forked from Bunteshaus/bunteshaus.de
41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
|
{{ define "title" }}
|
||
|
{{ if .Content }}
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ define "main" }}
|
||
|
{{- $all := where (where .Site.RegularPages "Permalink" "!=" .Permalink) "Type" "in" .Site.Params.searchSections }}
|
||
|
{{ $days := int (mul (mul (int .Site.Params.featured_expire) 7) -1) }}
|
||
|
{{ $featured := where (where (where $all ".Params.featured" "=" true) "Type" "in" .Site.Params.searchSections) ".Params.Lastmod" "gt" (now.AddDate 0 0 $days) }}
|
||
|
{{ $featured = $all | intersect $featured }}
|
||
|
{{ $posts := $all | complement $featured }}
|
||
|
{{- $paginator := .Paginate $posts -}}
|
||
|
{{ if eq $paginator.PageNumber 1 }}
|
||
|
{{ if ne .Content "" }}
|
||
|
<article>
|
||
|
{{ .Content }}
|
||
|
</article>
|
||
|
{{ end }}
|
||
|
{{ if gt (len $featured) 0 }}
|
||
|
<a href="/featured"><h2 style="margin-left: .5rem;">{{if "featured" | i18n }}{{ "featured" | i18n }}{{ else }}{{ "Featured" }}{{ end }}</h2></a>
|
||
|
{{ partial "contentlayouts/list.html" (dict "context" . "pages" $featured "amount" "3" ) }}
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
{{ if gt (len $posts) 1 }}
|
||
|
<a href="/news"><h2 style="margin-left: .5rem;">{{ if "news" | i18n }}{{ "news" | i18n }}{{ else }}{{ "News" }}{{ end }}</h2></a>
|
||
|
{{ partial "contentlayouts/list.html" (dict "context" . "paginator" $paginator "amount" "5") }}
|
||
|
|
||
|
<div id="pagination_outer" style="display: flex; justify-content: center;">
|
||
|
{{ partial "structure/paginator" (dict "paginator" $paginator) }}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
|
||
|
|
||
|
{{ end }}
|
||
|
|
||
|
{{ define "sidebar" }}
|
||
|
{{- partial "contentlayouts/menu.html" . }}
|
||
|
{{ end }}
|
||
|
|