summaryrefslogtreecommitdiffstats
path: root/layouts/_default/term.html
blob: 6450775c047ab9e53f2579adaa716c9ab3ca17af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{ define "main" }}

{{/* This template is for list of all publications in a Term (for example a Tag) */}}
<div class="articles">
    <h1 class="page-title">
        {{ with .Title }}{{ i18n "publications_tagged" . }}{{ end }}
    </h1>

    {{/* Render category content if any */}}
    {{ with .Content }}
        <div class="section-content">
            {{ .Content }}
        </div>
    {{ end }}

    {{/* Render posts list */}}
    <div class="post-list">
        {{ range .Paginator.Pages }}
            {{ .Render "teaser" }}
        {{ end }}

        {{ partial "pagination.html" . }}
    </div>
</div>

{{ end }}