This repository has been archived on 2019-06-27. You can view files and clone it, but cannot push or open issues/pull-requests.
am/templates/base.html

23 lines
409 B
HTML

{{define "PageStart" -}}
<!doctype html>
<html lang="en">
<head>
<title>am</title>
<style>{{template "CSS"}}</style>
</head>
<body>
<ul class="top-menu">
<li><a href="/log/list">Log</a></li>
<li><a href="/source/list">Sources</a></li>
<li><a href="/user/list">Users</a></li>
<li style="float:right"><a>{{now}}</a></li>
</ul>
{{end}}
{{define "PageEnd" -}}
</body>
</html>
{{- end}}