ed91cb7629
For better maintainability
19 lines
453 B
HTML
19 lines
453 B
HTML
{{ define "main" }}
|
|
<div class="widget">
|
|
<h3 class="widget-title">{{ .Title }}</h3>
|
|
</div>
|
|
|
|
<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 }} |