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

19 lines
490 B
HTML
Raw Normal View History

{{ define "body" }}
<h1>Admin</h1>
2022-11-29 20:48:07 +00:00
This is a directory of pages which are used for managing site 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?method=manage" }}">Posts</a></li>
<li><a href="{{ BlogURL "assets?method=manage" }}">Assets</a></li>
<li><a href="{{ BlogURL "drafts?method=manage" }}">Drafts</a> (private)</li>
</ul>
{{ end }}
{{ template "base.html" . }}