15 lines
442 B
HTML
15 lines
442 B
HTML
{{ 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") -}}
|
|
{{ end }}
|
|
{{ end }}
|
|
<div class="content">
|
|
{{ with .Title }}
|
|
{{ partial "components/title.html" . }}
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</div>
|
|
{{ end }}
|