41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
{{- define "title" -}}
|
|
{{ $name := .Name | lower }}
|
|
{{ if ne ($name | i18n) "" }}
|
|
{{ $name = $name | i18n }}
|
|
{{ else }}
|
|
{{ if ne .Section "events" }}
|
|
{{ $name = $name | singularize }}
|
|
{{ end }}
|
|
{{ $name = $name | humanize }}
|
|
{{ end }}
|
|
<h1>{{ $name }}</h1>
|
|
{{- end -}}
|
|
|
|
{{- define "main" -}}
|
|
{{ $title := lower .Title }}
|
|
{{ $s := .Site.Params }}
|
|
{{- $paginator := slice -}}
|
|
{{ $what := printf ".Params.%s" $title }}
|
|
{{ if or (eq $title "about") (eq $title "featured") }}
|
|
{{- $paginator = .Paginate (where (where .Site.RegularPages "Type" "in" site.Params.searchSections) $what "eq" true) -}}
|
|
{{ else if eq $title "events" }}
|
|
{{- $paginator = .Paginate (where (where .Site.RegularPages "Type" "in" site.Params.searchSections) ".Params.when" "ne" nil) -}}
|
|
{{ else }}
|
|
{{- $paginator = .Paginate .Data.Pages -}}
|
|
{{ end }}
|
|
{{ if eq $paginator.PageNumber 1 }}
|
|
{{ if ne .Content "" }}
|
|
<article>
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{- range first 5 $paginator.Pages -}}
|
|
{{ partial "contentlayouts/list.html" . }}
|
|
{{- end }}
|
|
{{ partial "structure/paginator" (dict "paginator" $paginator) }}
|
|
{{- end -}}
|
|
|
|
{{ define "sidebar" }}
|
|
{{- partial "contentlayouts/menu.html" . }}
|
|
{{ end }} |