{{ define "main" }} {{ if .Params.announcement }}
{{ .Params.announcement | markdownify }}
{{ end }}

{{ if .Params.title_full }}{{ .Params.title_full }}{{ else }}{{ .Title}}{{ end }}

Published on: {{ .Date | time.Format "2006-01-02" }}. Written by: {{ range (.GetTerms "editorials_authors") }}{{ .LinkTitle }}{{ end }}
{{ .Title }}
{{ .Params.banner_caption | markdownify }}
{{ .Content }}
Topics: {{ range (.GetTerms "editorials_topics") }} {{ .LinkTitle }} {{ end }}
Share this:
{{ $related := site.RegularPages.Related . }} {{ if $related }}

Similar articles

{{ .Scratch.Set "editorials_list" (first 4 $related) }} {{ partial "editorials.html" . }}
{{ end }}
{{ end }}