Initial commit

This commit is contained in:
2025-02-24 07:55:33 +01:00
commit 1226c3a84b
29 changed files with 2797 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{{ define "main" }}
<div class="m-auto max-w-6xl py-20">
<h1 class="text-2xl text-mms-nightblue font-bold">{{ .Title }}</h1>
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format ":date_long" }}
<time class="text-mms-turquoise font-bold" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
<div class="my-6 text-justify">
{{ .Content }}
</div>
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
</div>
{{ end }}