mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
5 lines
301 B
HTML
Executable file
5 lines
301 B
HTML
Executable file
{{ define "main" }}
|
|
{{ $paginator := .Paginate (.Pages | lang.Merge (where .Sites.First.RegularPages "Section" .Section)) }}
|
|
{{ $section_to_display := .Sections | default $paginator.Pages }}
|
|
{{ partial "pagelayout.html" (dict "context" . "section_to_display" $section_to_display ) }}
|
|
{{ end }}
|