mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2024-11-23 18:31:45 +01:00
ed91cb7629
For better maintainability
19 lines
No EOL
623 B
HTML
19 lines
No EOL
623 B
HTML
{{ define "main" }}
|
|
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
|
|
{{ $notHidden := where .Site.RegularPages "Params.hidden" "!=" true }}
|
|
{{ $filtered := ($pages | intersect $notHidden) }}
|
|
{{ $pag := .Paginate ($filtered) }}
|
|
|
|
<section class="article-list">
|
|
{{ range $index, $element := $pag.Pages }}
|
|
{{ partial "article-list/default" . }}
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{- partial "pagination.html" . -}}
|
|
{{ partialCached "footer/footer" . }}
|
|
{{ end }}
|
|
|
|
{{ define "right-sidebar" }}
|
|
{{ partialCached "sidebar/right.html" . }}
|
|
{{ end }} |