bcarlin.net/layouts/page.html

18 lines
473 B
HTML
Raw Permalink Normal View History

2025-06-07 02:33:02 +02:00
{{ define "main" }}
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
2025-06-20 02:33:45 +02:00
{{ $dateHuman := .Date | time.Format ":date_short" }}
2025-06-07 02:33:02 +02:00
<article class="h-entry">
<header>
<h1 class="p-name">{{ .Title }}</h1>
<p>
2025-06-20 02:33:45 +02:00
{{ T "posted" }}
2025-06-07 02:33:02 +02:00
<time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
</p>
</header>
<section class="e-content">
{{ .Content }}
</section>
</article>
{{ end }}