Files
hugo-theme-stack/layouts/index.html
T

16 lines
462 B
HTML
Raw Normal View History

2020-08-22 13:20:08 +02:00
{{ define "main" }}
{{- $paginator := partial "helper/paginator.html" . -}}
<section class="article-list">
{{ range $index, $element := $paginator.Pages }}
{{ partial "article-list/default" . }}
{{ end }}
</section>
2020-08-22 13:20:08 +02:00
{{- partial "pagination.html" . -}}
{{- partial "footer/footer" . -}}
{{ end }}
{{ define "right-sidebar" }}
2022-02-26 23:45:25 +01:00
{{ partial "sidebar/right.html" (dict "Context" . "Scope" "homepage") }}
2020-08-22 13:20:08 +02:00
{{ end }}