14 lines
308 B
HTML
14 lines
308 B
HTML
{{- define "main" -}}
|
|
|
|
<h1>{{ .Title | markdownify }}</h1>
|
|
|
|
<small class="text-secondary">{{ .PublishDate | time.Format ":date_medium" }}</small>
|
|
{{ partial "tags" . }}
|
|
|
|
{{ if .Params.author }}
|
|
<br><small><em>{{ i18n "blog_post_by" }} {{ .Params.author }}</em></small>
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
|
|
{{- end -}}
|