{{- define "main" }} {{- $scratch := newScratch }} {{- if isset .Params "image" }} {{- $scratch.Set "image" .Params.image }} {{- else }} {{- if isset .Params "featured_image" }} {{- $scratch.Set "image" .Params.featured_image }} {{- else }} {{- $scratch.Set "image" "nop" }} {{- end }} {{- end }} {{- $image := $scratch.Get "image" }} {{ if eq $image "nop" }}
{{ else }} {{- $bg := ( $image | absLangURL) }}
{{- with .Params.tags -}} {{- range first 10 . }} {{- $tag := . | urlize }} {{- end }} {{- end }}
{{ end }}

{{- if isset .Params "title" }} {{ .Title }} {{- else }} Post op {{ .Lastmod.Format (.Site.Params.dateFormat | default "2 January 2006") }} {{- end }}

{{ if isset .Params "date" }} {{ end }} {{- if isset .Params "link" }} Ook beschikbaar op dit platform: publicatielink . {{- end }}
{{- .Content }} {{ if not .Params.disableComments }}
{{- partial "copy" . }}
{{ end }}

Geschreven voor {{ .Site.Title }} door {{ if isset .Params "author" }} {{ .Params.author }} {{ else }} {{ .Site.Author.name }} {{ end }} .


{{- end }}