summaryrefslogtreecommitdiff
path: root/layouts/taxonomy/term.html
blob: d133caa6de015fbb5c499b4bb61a81d222025642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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" . }}