vanten-s.com/themes/vanten/layouts/_default/single.html

12 lines
386 B
HTML
Raw Normal View History

2024-07-21 19:41:39 +02:00
{{ 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 }}
2024-08-06 00:25:16 +02:00
<div class="separator" style="padding-bottom: 1em;"></div>
2024-07-21 19:41:39 +02:00
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
{{ end }}