blob: c82855c318d678d80b1e31b7901e2f03482b2f25 (
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 "posts") }}
{{ $paginator := .Paginate (where site.RegularPages.ByDate.Reverse "Section" "in" $mainSections) }}
<div class="articles">
{{ with .Title }}<h1 class="page-title">{{ . }}</h1>{{ end }}
{{ range $paginator.Pages }}{{- .Render "teaser" }}{{ end }}
</div>
{{ end }}
{{ end }}
|