s1llyw0rdz/web/handler/html/common/layout.html

38 lines
1.2 KiB
HTML
Raw Normal View History

2021-11-22 09:06:23 +00:00
{{ define "layout" }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2021-12-14 06:41:05 +00:00
<title>{{ template "title" . }}Status Cafe</title>
2021-11-22 20:23:30 +00:00
<meta name="description" content="your friends' updates">
<link rel="stylesheet" href="/assets/style.css"/>
2021-12-14 06:41:05 +00:00
{{ if .face }}
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>{{ .face }}</text></svg>">
{{ else }}
<link rel="icon" href="/assets/favicon.ico">
{{ end }}
2021-11-22 09:06:23 +00:00
{{ template "head" . }}
</head>
<body>
2021-11-22 20:23:30 +00:00
<header>
2021-11-26 22:36:48 +00:00
<nav>
2021-12-04 15:22:30 +00:00
<a href="/">status.cafe</a>
2021-11-26 22:36:48 +00:00
{{ if .logged }}
2021-11-26 22:43:14 +00:00
<a href="/settings">settings</a> <a href="/users/{{ .logged }}">{{ .logged }}</a> (<a href="/logout">logout</a>)
2021-11-26 22:36:48 +00:00
{{ else }}
<a href="/register">register</a> <a href="/login">login</a>
{{ end }}</nav>
2021-11-22 20:23:30 +00:00
</header>
<main>
2021-11-22 09:06:23 +00:00
{{ template "content" . }}
2021-11-22 20:23:30 +00:00
</main>
<footer>
</footer>
</div>
2021-11-22 09:06:23 +00:00
</body>
</html>
{{ end }}
2021-11-22 20:23:30 +00:00
{{ define "head" }}{{ end }}
2021-12-14 06:41:05 +00:00
{{ define "title" }}{{ end }}