2022-06-27 16:09:44 +02:00
|
|
|
{{ define "main" }}
|
2025-04-17 16:22:33 +02:00
|
|
|
{{ with .Params.image }}
|
|
|
|
{{ if .url }}
|
|
|
|
{{- partial "components/image.html" (dict "style" "coverimage" "url" .url "alt" .alt) -}}
|
|
|
|
{{ else }}
|
|
|
|
{{- partial "components/image.html" (dict "style" "coverimage" "url" . "alt" "Cover") -}}
|
2022-06-27 16:09:44 +02:00
|
|
|
{{ end }}
|
2025-04-17 16:22:33 +02:00
|
|
|
{{ end }}
|
|
|
|
<div class="content">
|
|
|
|
{{ with .Title }}
|
|
|
|
{{ partial "components/title.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
2024-03-15 17:37:03 +01:00
|
|
|
{{ end }}
|