mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2024-11-23 18:31:45 +01:00
16 lines
No EOL
515 B
HTML
16 lines
No EOL
515 B
HTML
{{ define "main" }}
|
|
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
|
|
{{ $pag := .Paginate ($pages) }}
|
|
<section class="article-list">
|
|
{{ range $index, $element := $pag.Pages }}
|
|
{{ partial "article-list/default" . }}
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{- partial "pagination.html" . -}}
|
|
{{- partial "footer/footer" . -}}
|
|
{{ end }}
|
|
|
|
{{ define "right-sidebar" }}
|
|
{{ partial "sidebar/right.html" (dict "Context" . "Scope" "homepage") }}
|
|
{{ end }} |