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

<div class="articles">
    {{ with .Title }}<h1 class="page-title">{{ . }}</h1>{{ end }}

    {{/* 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 }}