gohugo-theme-bree/layouts/index.html

21 lines
527 B
HTML

{{ 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">
<h1 class="page-title">Articles</h1>
{{ range $paginator.Pages }}
{{ .Render "teaser" }}
{{ end }}
</div>
{{ end }}
{{ end }}