mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2024-11-24 02:41:46 +01:00
24 lines
No EOL
677 B
HTML
24 lines
No EOL
677 B
HTML
{{ define "body_class" }}3-column{{ end }}
|
|
{{ define "main" }}
|
|
<div class="container extended flex on-phone--column align-items--flex-start">
|
|
{{ partialCached "sidebar/left.html" . }}
|
|
|
|
<main class="main full-width">
|
|
<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" . }}
|
|
</main>
|
|
|
|
{{ partialCached "sidebar/right.html" . }}
|
|
</div>
|
|
{{ end }} |