28 lines
604 B
HTML
28 lines
604 B
HTML
{{define "page"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{block "Title" .Title}}{{end}} - Shelves</title>
|
|
<link rel="stylesheet" href="/static/css/mu.css" />
|
|
<script module src="/static/js/vendor/htmx-2.0.3.js"></script>
|
|
{{block "Head" .Head}}{{end}}
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
{{if eq .SessionInfo.SessionId ""}}
|
|
<a href="/login">Login</a>
|
|
{{else}}
|
|
<button hx-delete="/login">Log out</button>
|
|
{{end}}
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
{{block "BodyBefore" .BodyBefore}}{{end}}
|
|
{{block "Body" .Body}}{{.}}{{end}}
|
|
{{block "BodyAfter" .BodyAfter}}{{end}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|