diff options
Diffstat (limited to 'layouts/taxonomy/term.html')
| -rw-r--r-- | layouts/taxonomy/term.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/layouts/taxonomy/term.html b/layouts/taxonomy/term.html new file mode 100644 index 0000000..d133caa --- /dev/null +++ b/layouts/taxonomy/term.html @@ -0,0 +1,21 @@ +{{ partial "header.html" . -}} +{{ partial "navbar.html" . -}} + +<main> + <section class="post-body"> + <h1 class="page-title" style="text-align:center;">{{ .Title }}</h1> + + <ul class="recent-posts"> + {{ range .Pages.ByDate.Reverse }} + <li> + <a href="{{ .Permalink }}">{{ .Title }}</a> + {{ with .Params.date }} + <span class="recent-post-date">{{ . | time | dateFormat "2006-01-02" }}</span> + {{ end }} + </li> + {{ end }} + </ul> + </section> +</main> + +{{ partial "footer.html" . }} |
