summaryrefslogtreecommitdiffstats
path: root/layouts/index.html
blob: d3091c798bc672d304d24ac8adf4634c3d4813d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}

{{- with .Content }}
    <div class="introduction">
        {{ . }}
    </div>
    <hr>
    {{- partial "mini-toc" . -}}
{{- else }}
    {{- $mainSections := site.Params.mainSections | default (slice "post") }}
    {{ $paginator := .Paginate (where site.RegularPages "Section" "in" $mainSections) }}
    <div class="articles">
        {{ with .Title }}<h1 class="page-title">{{ . }}</h1>{{ end }}
        {{ range $paginator.Pages }}{{- .Render "teaser" }}{{ end }}
    </div>
{{- end }}
{{- end }}