2025-02-23 11:31:02 +01:00
|
|
|
{{- define "main" -}}
|
|
|
|
|
|
|
|
<h1>{{ .Title | markdownify }}</h1>
|
|
|
|
|
|
|
|
<small class="text-secondary">{{ .PublishDate | time.Format ":date_medium" }}</small>
|
|
|
|
{{ partial "tags" . }}
|
|
|
|
|
2025-02-24 14:06:08 +01:00
|
|
|
{{ if .Params.author }}
|
|
|
|
<br><small><em>{{ i18n "blog_post_by" }} {{ .Params.author }}</em></small>
|
|
|
|
{{ end }}
|
2025-02-23 11:31:02 +01:00
|
|
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
{{- end -}}
|