2022-06-22 18:15:37 +02:00
|
|
|
{{ define "banner" }}
|
|
|
|
{{ $image := "" }}
|
|
|
|
{{ if .Resources.GetMatch "banner*" }}
|
|
|
|
{{ $image = .Resources.GetMatch "banner*" }}
|
|
|
|
{{ end }}
|
|
|
|
{{ partial "snippets/banner_new" (dict "context" . "image" $image "title" .Title "section" .Section) }}
|
|
|
|
{{ end }}
|
|
|
|
|
2022-06-17 17:45:53 +02:00
|
|
|
{{ define "intro" }}
|
|
|
|
{{ if ne .Content "" }}
|
|
|
|
{{ partial "snippets/content" (dict "content" .Content) }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "content" }}
|
|
|
|
<div>
|
|
|
|
{{ range .Pages }}
|
|
|
|
<div>🗀 <a href="{{ .Permalink }}" class="underline">{{ .Title }}</a></div>
|
|
|
|
{{ end }}
|
|
|
|
{{ range .Resources }}
|
|
|
|
<div>🗀 <a href="{{ .Permalink }}">{{ . }}</a></div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|