Hugo-theme-stack/layouts/_default/list.html
2020-12-21 17:26:58 +01:00

17 lines
414 B
HTML

{{ define "main" }}
<h3 class="section-title">{{ .Title }}</h3>
<section class="article-list--compact">
{{ range .Paginator.Pages }}
{{ partial "article-list/compact" . }}
{{ end }}
</section>
{{- partial "pagination.html" . -}}
{{ partialCached "footer/footer" . }}
{{ end }}
{{ define "right-sidebar" }}
{{ partialCached "sidebar/right.html" . }}
{{ end }}