Initial git tracking

This commit is contained in:
2024-08-24 13:20:53 +01:00
commit a6403d97ee
14 changed files with 657 additions and 0 deletions

13
templates/default.html Normal file
View File

@ -0,0 +1,13 @@
{{ template "_style.html" .}}
{{ template "_header.html" .}}
<h1>{{ .Title }}</h1>
{{ if not .Page.DatePublished.IsZero }}
<p class="publish-date">Published on <time datetime="{{ .Page.DatePublished.Format `2006-01-02` }}">{{ .Page.DatePublished.Format `January 2, 2006` }}</time></p>
<p>
{{ end }}
{{ .Content }}
{{ template "_footer.html" .}}