diff options
Diffstat (limited to 'src/http/tpl/posts.html')
-rw-r--r-- | src/http/tpl/posts.html | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/http/tpl/posts.html b/src/http/tpl/posts.html index 0701459..2fa336d 100644 --- a/src/http/tpl/posts.html +++ b/src/http/tpl/posts.html @@ -1,8 +1,11 @@ {{ define "body" }} - {{ if ge .Payload.PrevPage 0 }} + {{ $page := .GetQueryIntValue "p" 0 -}} + {{ $getPostsRes := .GetPosts $page 20 -}} + + {{ if gt $page 0 }} <p> - <a href="?p={{ .Payload.PrevPage}}">< < Previous Page</a> + <a href="?p={{ .Add $page -1 }}">< < Previous Page</a> </p> {{ else }} <p> @@ -12,10 +15,10 @@ {{ end }} <ul> - {{ range .Payload.Posts }} + {{ range $getPostsRes.Posts }} <li> <strong><a href="{{ PostURL .ID }}"> - {{ DateTimeFormat .PublishedAt }} / {{ .Title }} + {{ .PublishedAt.Format "2006-01-02" }} - {{ .Title }} </a></strong> {{ if .Description }} <br/><em>{{ .Description }}</em> @@ -24,9 +27,9 @@ {{ end }} </ul> - {{ if ge .Payload.NextPage 0 }} + {{ if $getPostsRes.HasMore }} <p> - <a href="?p={{ .Payload.NextPage}}">Next Page > ></a> + <a href="?p={{ .Add $page 1 }}">Next Page > ></a> </p> {{ end }} |