Files
hugo-bootswatch-slate/layouts/index.html
2018-02-17 23:25:30 +02:00

15 lines
347 B
HTML

{{ define "main" }}
<div class="header">
<h1>{{ .Title }}</h1>
<h2>{{ .Site.Params.subtitle }}</h2>
</div>
<div class="content">
{{ $paginator = .Paginate ( where .Data.Pages "Type" "post") }}
{{ range $paginator.Pages }}
{{ .Render "summary" }}
{{ end }}
{{ partial "pagination.html" . }}
</div>
{{ end }}