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

18
templates/blog.html Normal file
View File

@ -0,0 +1,18 @@
{{ template "_style.html" .}}
{{ template "_header.html" .}}
<h1>{{ .Title }}</h1>
<ul>
{{ range $.Posts }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a><br>
<small>{{ .DatePublished.Format "January 2, 2006" }}</small>
</li>
{{ end }}
</ul>
{{ .Content }}
{{ template "_footer.html" .}}