Files
paige-hugo/layouts/partials/paige-date.html
2022-12-18 02:30:13 -08:00

8 lines
250 B
HTML

{{ with .PublishDate }}
{{ $format := ":date_long" }}
{{ with site.Params.paige.date_format }}
{{ $format = . }}
{{ end }}
<p class="text-center text-muted"><time datetime="{{ .Format `2006-01-02` }}">{{ time.Format $format . }}</time></p>
{{ end }}