Files
palette/web/templates/layout.html
T
poslop 026d9b8c92
CI / test (push) Successful in 17s
CI / docker (push) Skipped
topbar: New/Public/Git labels, git opens in new tab
2026-09-08 19:28:40 -05:00

18 lines
583 B
HTML

{{define "head"}}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/static/app.css">
{{end}}
{{define "topbar"}}
<div class="topbar">
<a class="logo" href="/history">Palette <em>/ beta</em></a>
<nav>
<a href="/new" {{if eq .Page "new"}}class="on"{{end}}>New</a>
<a href="/history" {{if eq .Page "history"}}class="on"{{end}}>Public</a>
<a href="https://git.archfox.org/poslop/palette" target="_blank" rel="noopener">Git</a>
</nav>
<div class="spacer"></div>
</div>
{{end}}