mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-02-07 12:19:36 +00:00
12 lines
340 B
HTML
12 lines
340 B
HTML
|
{{ define "main" }}
|
||
|
<hr>
|
||
|
{{ .Content }}
|
||
|
|
||
|
{{- /* The homepage should show only pages from the given sections (with `$.Site.Params.mainSections`).
|
||
|
Otherwise, we take the pages of a section. */ -}}
|
||
|
{{- $pages := .Pages }}
|
||
|
{{- if .IsHome }}
|
||
|
{{- $pages = where $.Site.RegularPages "Type" "in" $.Site.Params.mainSections }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|