Implement base proof of concept site

This commit is contained in:
Tyler Perkins
2023-06-27 20:58:17 -04:00
parent 9f1b65b826
commit 0200086036
13 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ range .Pages }}
<article>
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
</article>
{{ end }}
{{ end }}