forked from Bunteshaus/bunteshaus.de
18 lines
581 B
HTML
18 lines
581 B
HTML
{{ define "intro" }}
|
|
{{ if ne .Content "" }}
|
|
{{ partial "snippets/content" (dict "content" .Content) }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
{{- $pages := where .Site.RegularPages "Permalink" "!=" .Permalink -}}
|
|
{{- $paginator := "" -}}
|
|
{{- $partial := "gen_list" -}}
|
|
{{- $paginate := true -}}
|
|
{{- $pages = where $pages ".Params.featured" "=" true -}}
|
|
|
|
{{ $partial = string (printf "news/%s" $partial) }}
|
|
{{ partial $partial (dict "context" . "pages" $pages "content" .Content "type" .Type "paginate" $paginate) }}
|
|
{{ end }}
|
|
|