devlog/themes/cuqui/layouts/_default/single.html

10 lines
313 B
HTML
Raw Normal View History

2024-11-13 21:14:37 +00:00
{{ define "main" }}
2024-11-15 10:46:13 +00:00
<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>
2024-11-15 09:27:29 +00:00
2024-11-15 10:46:13 +00:00
{{ .Content }} {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} {{
end }}