diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-08-18 23:07:09 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-08-18 23:07:09 -0600 |
commit | c3135306b32e3ee18c3c412fbb2ea81b455201d5 (patch) | |
tree | f7dd21fc9e0bab9b06a713a8218e52be777f1b15 /srv/src/http/tpl/draft-posts.html | |
parent | dfa9bcb9e23b10bb28973d1d27f05e04e8638320 (diff) |
drafts functionality added, needs a publish button still
Diffstat (limited to 'srv/src/http/tpl/draft-posts.html')
-rw-r--r-- | srv/src/http/tpl/draft-posts.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/srv/src/http/tpl/draft-posts.html b/srv/src/http/tpl/draft-posts.html new file mode 100644 index 0000000..f89fac5 --- /dev/null +++ b/srv/src/http/tpl/draft-posts.html @@ -0,0 +1,48 @@ +{{ define "body" }} + + <h1>Drafts</h1> + + <p> + <a href="{{ BlogURL "drafts/" }}?edit"> + New Draft + </a> + </p> + + {{ if ge .Payload.PrevPage 0 }} + <p> + <a href="?p={{ .Payload.PrevPage}}">< < Previous Page</a> + </p> + {{ end }} + + <table> + + {{ range .Payload.Posts }} + <tr> + <td><a href="{{ DraftURL .ID }}">{{ .Title }}</a></td> + <td> + <a href="{{ DraftURL .ID }}?edit"> + Edit + </a> + </td> + <td> + <form + action="{{ DraftURL .ID }}?method=delete" + method="POST" + > + <input type="submit" value="Delete" /> + </form> + </td> + </tr> + {{ end }} + + </table> + + {{ if ge .Payload.NextPage 0 }} + <p> + <a href="?p={{ .Payload.NextPage}}">Next Page > ></a> + </p> + {{ end }} + +{{ end }} + +{{ template "base.html" . }} |