From 1f3ae665ed2e58ca572678ce7caf8b711f226392 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Tue, 29 Nov 2022 20:59:31 +0100 Subject: Introduce EDIT and MANAGE methods All admin "index" pages are moved under MANAGE, so that we can have (for example) and normal "GET /posts" page later which would replace the current index page, and potentially corresponding pages for the other categories. The EDIT method replaces the old `?edit` pattern, which normalizes how we differentiate page functionality generally. --- src/http/tpl/posts.html | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 src/http/tpl/posts.html (limited to 'src/http/tpl/posts.html') diff --git a/src/http/tpl/posts.html b/src/http/tpl/posts.html deleted file mode 100644 index fbeaa41..0000000 --- a/src/http/tpl/posts.html +++ /dev/null @@ -1,47 +0,0 @@ -{{ define "body" }} - -

- Back to Admin -

- -

Posts

- - {{ if ge .Payload.PrevPage 0 }} -

- < < Previous Page -

- {{ end }} - - - - {{ range .Payload.Posts }} - - - - - - - {{ end }} - -
{{ .PublishedAt.Local.Format "2006-01-02 15:04:05 MST" }}{{ .Title }} - - Edit - - -
- -
-
- - {{ if ge .Payload.NextPage 0 }} -

- Next Page > > -

- {{ end }} - -{{ end }} - -{{ template "base.html" . }} -- cgit v1.2.3