bcarlin.net/themes/bcarlin/layouts/blog/single.html

22 lines
571 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>
<div class="metadata">
<p>
Posted on
<time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
</p>
<p> :: </p>
{{ partial "tags.html" . }}
</div>
</header>
<section class="e-content">
{{ .Content }}
</section>
</article>
{{ end }}