diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-11-29 21:32:41 +0100 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-11-29 21:34:55 +0100 |
commit | 7943865cc66b80eb54e06ec304bccef0d3a44151 (patch) | |
tree | b0dcfc2104c1f2c689d01ada7115677315f0ba47 /src/http/tpl/posts.html | |
parent | 1f3ae665ed2e58ca572678ce7caf8b711f226392 (diff) |
Move mediocregopher.com content to index of this site
Diffstat (limited to 'src/http/tpl/posts.html')
-rw-r--r-- | src/http/tpl/posts.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/http/tpl/posts.html b/src/http/tpl/posts.html new file mode 100644 index 0000000..ef94ffb --- /dev/null +++ b/src/http/tpl/posts.html @@ -0,0 +1,35 @@ +{{ define "body" }} + + {{ if ge .Payload.PrevPage 0 }} + <p> + <a href="?p={{ .Payload.PrevPage}}">< < Previous Page</a> + </p> + {{ else }} + <p> + Posts are listed in chronological order. If you aren't sure of where to + start I recommend picking at random. + </p> + {{ end }} + + <ul> + {{ range .Payload.Posts }} + <li> + <strong><a href="{{ PostURL .ID }}"> + {{ DateTimeFormat .PublishedAt }} / {{ .Title }} + </a></strong> + {{ if .Description }} + <br/><em>{{ .Description }}</em> + {{ end }} + </li> + {{ end }} + </ul> + + {{ if ge .Payload.NextPage 0 }} + <p> + <a href="?p={{ .Payload.NextPage}}">Next Page > ></a> + </p> + {{ end }} + +{{ end }} + +{{ template "base.html" . }} |