30 lines
671 B
HTML
30 lines
671 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 aria-label="Main navigation">
|
|
<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}}
|
|
<main>
|
|
{{block "Body" .Body}}{{.}}{{end}}
|
|
</main>
|
|
{{block "BodyAfter" .BodyAfter}}{{.}}{{end}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|