mediocre-blog/src/http/tpl/admin.html

19 lines
448 B
HTML
Raw Normal View History

{{ define "body" }}
<h1>Admin</h1>
This is a directory of pages which are used for managing blog content. They are
mostly left open to inspection, but you will not able to change
anything without providing credentials.
<ul>
<li><a href="{{ BlogURL "posts" }}">Posts</a></li>
<li><a href="{{ BlogURL "assets" }}">Assets</a></li>
2022-08-20 03:58:18 +00:00
<li><a href="{{ BlogURL "drafts" }}">Drafts</a> (private)</li>
</ul>
{{ end }}
{{ template "base.html" . }}