first commit

This commit is contained in:
selene 2026-02-14 23:03:08 +01:00
commit 384567df50
Signed by: sel
SSH key fingerprint: SHA256:33R/4Rx5Lu4o81LyJyXdMrmP5CJ6j7j1Soo0Dn7mKc0
44 changed files with 501 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{{ define "main" }}
<section>
<h1>{{ .Title }}</h1>
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format "2006-01-02, 15:04 -07:00" }}
<p class="date"><time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time></p>
</section>
<section>
{{ .Content }}
</section>
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
{{ end }}