Barebones test site

This commit is contained in:
Eryn Wells 2024-06-06 21:01:40 -07:00
parent ba03fa4473
commit e2408cf277
15 changed files with 429 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{{ define "main" }}
<header>
<h1>{{ .Title }}</h1>
{{ if .Date }}
<time>{{ .Date | time.Format "2006.01.02" }}</time>
{{ end }}
</header>
{{ .Content }}
{{ end }}