2023-01-13 19:43:42 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2023-01-22 20:41:50 +00:00
|
|
|
<title>{{ .Title }} — Numerus</title>
|
2023-01-17 21:28:47 +00:00
|
|
|
<link rel="stylesheet" type="text/css" media="screen" href="/static/numerus.css">
|
2023-01-13 19:43:42 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-01-17 21:28:47 +00:00
|
|
|
<header>
|
|
|
|
<h1><img src="/static/numerus.svg" alt="Numerus" width="261" height="33"></h1>
|
2023-01-22 21:30:15 +00:00
|
|
|
<div class="relative">
|
|
|
|
<button id="profilebutton" aria-controls="profilemenu" aria-haspopup="true"><i class="ri-eye-close-line ri-3x"></i></button>
|
|
|
|
<ul id="profilemenu" role="menu" aria-labelledby="profilebutton">
|
|
|
|
<li role="presentation">
|
|
|
|
<a role="menuitem" href="/profile"><i class="ri-account-circle-line"></i> {{( gettext "Account" )}}</a>
|
|
|
|
</li>
|
|
|
|
<li role="presentation">
|
|
|
|
<form method="POST" action="/logout"><button type="submit" role="menuitem"><i class="ri-logout-circle-line"></i> {{( pgettext "Logout" "action" )}}</button></form>
|
|
|
|
</li>
|
2023-01-17 21:28:47 +00:00
|
|
|
</ul>
|
2023-01-22 21:30:15 +00:00
|
|
|
</div>
|
|
|
|
<div class="overlay"></div>
|
2023-01-17 21:28:47 +00:00
|
|
|
</header>
|
|
|
|
<main>
|
2023-01-22 20:41:50 +00:00
|
|
|
{{- template "content" . }}
|
2023-01-17 21:28:47 +00:00
|
|
|
</main>
|
2023-01-13 19:43:42 +00:00
|
|
|
</body>
|
|
|
|
</html>
|