diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-05-17 15:54:20 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-05-17 15:54:20 -0600 |
commit | 69de76cb32cfd638672d4d5846d0659bf102316f (patch) | |
tree | fd2a1f9fdd815a70eb514b54dbcacc24b8e402cc /srv/src/api/tpl/index.html | |
parent | e406ad6e7c82592d3bbaa1cf93ffc1612e4f196c (diff) |
Add asset file upload form, plus related necessary refactors
Diffstat (limited to 'srv/src/api/tpl/index.html')
-rw-r--r-- | srv/src/api/tpl/index.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/srv/src/api/tpl/index.html b/srv/src/api/tpl/index.html index 1858ea8..b634169 100644 --- a/srv/src/api/tpl/index.html +++ b/srv/src/api/tpl/index.html @@ -2,7 +2,7 @@ <ul id="posts-list"> - {{ range .Posts }} + {{ range .Payload.Posts }} <li> <h2> <a href="posts/{{ .HTTPPath }}">{{ .Title }}</a> @@ -17,15 +17,15 @@ </ul> - {{ if or (ge .PrevPage 0) (ge .NextPage 0) }} + {{ if or (ge .Payload.PrevPage 0) (ge .Payload.NextPage 0) }} <div id="page-turner"> - {{ if ge .PrevPage 0 }} - <a style="float: left;" href="?p={{ .PrevPage}}">Newer</a> + {{ if ge .Payload.PrevPage 0 }} + <a style="float: left;" href="?p={{ .Payload.PrevPage}}">Newer</a> {{ end }} - {{ if ge .NextPage 0 }} - <a style="float:right;" href="?p={{ .NextPage}}">Older</a> + {{ if ge .Payload.NextPage 0 }} + <a style="float:right;" href="?p={{ .Payload.NextPage}}">Older</a> {{ end }} </div> |