blog/themes/quadrant/layouts/_default/single.html

11 lines
362 B
HTML
Raw Normal View History

2025-04-18 18:11:05 +00:00
{{ define "main" }}
2025-04-30 18:52:39 +00:00
<h1 class="post-title">{{ .Title }}</h1>
2025-04-18 18:11:05 +00:00
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format ":date_long" }}
2025-04-30 18:52:39 +00:00
<time class="post-time" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
2025-04-18 18:11:05 +00:00
{{ .Content }}
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
{{ end }}