Hugo-theme-stack/layouts/_default/list.html

17 lines
414 B
HTML
Raw Normal View History

{{ define "main" }}
2020-12-21 11:26:58 -05:00
<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 }}