sojuboy/internal/httpapi/templates/layout.tmpl

28 lines
750 B
Cheetah
Raw Normal View History

{{ define "layout.tmpl" }}
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>{{ .Title }} · sojuboy</title>
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@2/css/pico.min.css">
<link rel="stylesheet" href="/static/app.css">
<script defer src="/static/app.js"></script>
</head>
<body>
<header class="nav">
<div><a class="brand" href="/">sojuboy</a></div>
<nav>
<ul>
<li><a href="/summarizer">Summarizer</a></li>
<li><a href="/logout">Logout</a></li>
</ul>
</nav>
</header>
{{ block "content" . }}{{ end }}
<footer><small>{{ .Version }} ({{ .Commit }})</small></footer>
</body>
</html>
{{ end }}