hugo-theme-nocolor/layouts/index.html

18 lines
668 B
HTML
Raw Normal View History

2019-11-20 19:56:22 +01:00
{{- define "main" }}
2020-12-28 20:12:36 +01:00
{{- $showfull := default false $.Site.Params.showFullContent }}
{{- $pagepool := where $.Site.RegularPages "Type" "in" $.Site.Params.mainSections }}
{{- range $idx, $_ := (.Paginate $pagepool).Pages }}
2021-03-23 02:45:30 +01:00
{{- $contentlabel := cond $showfull "Content" "Summary" }}
<article{{ if and $showfull $idx }} class="post-divider"{{ end }}>
<h2 class="post-title">
{{ if .Draft }}DRAFT: {{ end }}<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h2>
{{ partial "post_meta.html" . }}
<section aria-label="{{ $contentlabel }}">
2019-11-20 19:56:22 +01:00
{{ cond $showfull .Content .Summary }}
2021-03-23 02:45:30 +01:00
</section>
</article>
2019-11-20 19:56:22 +01:00
{{- end }}
{{ partial "pagination.html" . }}
{{- end }}