{{ define "main" }} {{ if not (or .Title .Description .PublishDate .Content) }}

Nothing Here

{{ else }}
{{ if or .Title .Description .PublishDate }}
{{ if .Title }}

{{ if .Params.link }} {{ .Title | markdownify }} {{ else }} {{ .Title | markdownify }} {{ end }}

{{ end }} {{ if .Description }}

{{ .Description | markdownify }}

{{ end }} {{ if .PublishDate }}

{{ end }}
{{ end }} {{ if .Content }}
{{ .Content }}
{{ end }}
{{ end }} {{ end }}