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

19 lines
453 B
HTML
Raw Normal View History

2020-09-06 14:18:38 +02:00
{{ define "main" }}
<div class="widget">
<h3 class="widget-title">{{ .Title }}</h3>
</div>
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 }}