website/themes/datacoop2020/layouts/blog/single.html

15 lines
308 B
HTML
Raw Normal View History

{{- 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 }}
{{ .Content }}
{{- end -}}