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
Raw Normal View History

2019-06-10 17:09:10 +00:00
{{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>
2019-06-11 13:47:46 +00:00
<li style="float:right"><a>{{now}}</a></li>
2019-06-10 17:09:10 +00:00
</ul>
2019-06-11 13:47:46 +00:00
2019-06-10 17:09:10 +00:00
{{end}}
{{define "PageEnd" -}}
</body>
</html>
{{- end}}