vanten-s.com/themes/vanten/layouts/_default/single.html
vanten-s 7fa671ad3c
All checks were successful
/ build (push) Successful in 20s
Added separator
2024-08-06 00:25:16 +02:00

12 lines
386 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format ":date_long" }}
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
{{ .Content }}
<div class="separator" style="padding-bottom: 1em;"></div>
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
{{ end }}