bcarlin.net/themes/bcarlin/layouts/page.html

19 lines
530 B
HTML
Raw Normal View History

2025-06-07 02:33:02 +02:00
{{ define "main" }}
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format "2006-01-02" }}
<article class="h-entry">
<header>
<h1 class="p-name">{{ .Title }}</h1>
<p>
Posted on
<time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
</p>
</header>
<section class="e-content">
{{ .Content }}
</section>
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
</article>
{{ end }}