Files
excipio/themes/terminal/layouts/partials/post-date.html
2025-07-21 15:01:37 +02:00

10 lines
258 B
HTML

{{- $date := .Date -}}
{{- with .Params.dateFormat -}}
{{- $date | time.Format . -}}
{{- else -}}
{{- with .Site.Params.dateFormat -}}
{{- $date | time.Format . -}}
{{- else -}}
{{- $date | time.Format "2006-01-02" -}}
{{- end -}}
{{- end -}}