Files
hugo-theme-stack/layouts/_default/list.html
T

17 lines
414 B
HTML
Raw Normal View History

2020-09-06 14:18:38 +02:00
{{ define "main" }}
2020-12-21 17:26:58 +01:00
<h3 class="section-title">{{ .Title }}</h3>
2020-09-06 14:18:38 +02:00
<section class="article-list--compact">
{{ range .Paginator.Pages }}
{{ partial "article-list/compact" . }}
{{ end }}
</section>
2020-09-06 14:18:38 +02:00
{{- partial "pagination.html" . -}}
2020-09-06 14:18:38 +02:00
{{ partialCached "footer/footer" . }}
{{ end }}
2020-09-06 14:18:38 +02:00
{{ define "right-sidebar" }}
2020-09-06 14:18:38 +02:00
{{ partialCached "sidebar/right.html" . }}
{{ end }}