Files
site/themes/github.com/davegallant/hugo-theme-gruvbox/layouts/index.html
2024-01-07 08:49:07 -05:00

13 lines
399 B
HTML

{{ define "main" }}
<div class="content-section">
<h1>{{ .Title | markdownify }}</h1>
{{ with .Content }}
<div>{{ . }}</div>
{{ end }}
</div>
<!-- See https://gohugo.io/functions/where/#mainsections -->
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ $paginator := .Paginate $pages }}
{{ partial "post-list.html" $paginator }}
{{ end }}