forked from Bunteshaus/bunteshaus.de
35 lines
1.5 KiB
HTML
35 lines
1.5 KiB
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.when" "ne" nil -}}
|
|
|
|
{{ $partial = string (printf "news/%s" $partial) }}
|
|
{{ partial $partial (dict "context" . "pages" $pages "content" .Content "type" .Type "paginate" $paginate) }}
|
|
{{ end }}
|
|
|
|
{{ define "sidebar" }}
|
|
{{ if gt .Site.Taxonomies.events 0 }}
|
|
<aside class="sidebar">
|
|
<h3 class="align_menu">{{ if i18n "categories" }}{{ i18n "categories" }}{{ else }}{{ "Categories" }}{{ end }}</h3>
|
|
<div class="align_menu"><a href="{{ "recurrent/" | relLangURL}}">{{ i18n "recurrent" }}</a></div>
|
|
{{ range $taxonomyname, $taxonomy := .Site.Taxonomies.events }}
|
|
{{ $orig := $taxonomyname }}
|
|
{{ if ne (i18n $taxonomyname) "" }}
|
|
{{ $taxonomyname = i18n $taxonomyname }}
|
|
{{ else }}
|
|
{{ $taxonomyname = $taxonomyname | humanize }}
|
|
{{ end }}
|
|
<div class="align_menu"><a href="{{ "events/" | relLangURL}}{{ $orig | urlize }}">{{ $taxonomyname }}</a></div>
|
|
{{ end }}
|
|
</aside>
|
|
{{ end }}
|
|
{{ end }}
|