diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2018-11-24 15:14:43 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2018-11-24 15:14:43 +0100 |
commit | 2a89630a47358edd3351bd8ad90ab03bd507bd59 (patch) | |
tree | b433e5012c6ab8f568b7555166f758a991584d56 /layouts/posts/list.html | |
parent | 7798a5cc7c1d636008f000937e3d096f01dbbde5 (diff) |
Add simple blog rendering
Diffstat (limited to 'layouts/posts/list.html')
-rw-r--r-- | layouts/posts/list.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layouts/posts/list.html b/layouts/posts/list.html new file mode 100644 index 0000000..4fda83f --- /dev/null +++ b/layouts/posts/list.html @@ -0,0 +1,20 @@ +{{ define "main" }} +<section> + {{ $paginator := .Paginate (where .Pages "Params.hidden" "ne" true) }} + {{ range sort .Paginator.Pages }} + <article> + <h2> + <a href="{{ .Permalink }}">{{ .Title }}</a> + </h2> + <h5>{{ .Date.Format "January 2, 2006" }}</h5> + <p> + {{ .Summary }} + {{ if .Truncated }} + <a href="{{ .Permalink }}">...</a> + {{ end }} + </p> + </article> + {{ end }} + {{ template "_internal/pagination.html" . }} +</section> +{{ end }}
\ No newline at end of file |