2020-09-06 20:18:38 +08:00
|
|
|
{{ define "main" }}
|
2020-12-22 00:26:58 +08:00
|
|
|
<h3 class="section-title">{{ .Title }}</h3>
|
2020-09-06 20:18:38 +08:00
|
|
|
|
2020-09-12 16:33:53 +08:00
|
|
|
<section class="article-list--compact">
|
|
|
|
{{ range .Paginator.Pages }}
|
|
|
|
{{ partial "article-list/compact" . }}
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
2020-09-06 20:18:38 +08:00
|
|
|
|
2020-09-12 16:33:53 +08:00
|
|
|
{{- partial "pagination.html" . -}}
|
2020-09-06 20:18:38 +08:00
|
|
|
|
2020-09-12 16:33:53 +08:00
|
|
|
{{ partialCached "footer/footer" . }}
|
|
|
|
{{ end }}
|
2020-09-06 20:18:38 +08:00
|
|
|
|
2020-09-12 16:33:53 +08:00
|
|
|
{{ define "right-sidebar" }}
|
2020-09-06 20:18:38 +08:00
|
|
|
{{ partialCached "sidebar/right.html" . }}
|
|
|
|
{{ end }}
|