25 lines
854 B
HTML
25 lines
854 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ .Title }} — Numerus</title>
|
|
<link rel="stylesheet" type="text/css" media="screen" href="/static/numerus.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1><img src="/static/numerus.svg" alt="Numerus" width="261" height="33"></h1>
|
|
<nav role="navigation">
|
|
<button aria-haspopup="true"><i class="ri-eye-close-line ri-3x"></i></button>
|
|
<ul>
|
|
<li><a href="/profile"><i class="ri-account-circle-line"></i> {{( gettext "Account" )}}</a></li>
|
|
<li><form method="POST" action="/logout"><button type="submit"><i class="ri-logout-circle-line"></i> {{( pgettext "Logout" "action" )}}</button></form></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{{- template "content" . }}
|
|
</main>
|
|
</body>
|
|
</html>
|