squirrel/layouts/_default/single.html

16 lines
442 B
HTML
Raw Normal View History

2022-06-27 16:09:44 +02:00
{{ define "main" }}
{{ 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 }}
{{ end }}
<div class="content">
{{ with .Title }}
{{ partial "components/title.html" . }}
{{ end }}
{{ .Content }}
</div>
{{ end }}