blob: 0b4b4e359b4ad4a9b458ffe30a8d3f5a9931d5d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{{ define "body" }}
<h1>Admin</h1>
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" . }}
|