{{ define "title"}} {{ .Title }} | {{ .Site.Params.author.name }} {{ end }} {{ define "main" }}

{{ .Title }}

{{ if .Site.Params.showMetadata | default true }}
{{ with .GetTerms "tags" }} {{ partial "taxonomy/tags.html" . }} {{ end }} {{ with .GetTerms "authors" }} {{ partial "taxonomy/authors.html" . }} {{ end }} {{ with .GetTerms "categories" }} {{ partial "taxonomy/categories.html" . }} {{ end }} {{ if .Site.Params.published | default true }}
{{ i18n "published" }}
{{ $formattedDate := .Date.Format "2006-01-02" }}
{{ end }} {{ if .Site.Params.readingTime | default true }}
{{ i18n "reading_time" }}
{{ i18n "reading_time_desc" .ReadingTime }}
{{ end }}
{{ end }}
{{ .Content }}
{{ end }}