Add more hugo templates

This commit is contained in:
2023-05-31 13:35:32 -04:00
parent 03ec17230c
commit 603d1d05e3
11 changed files with 103 additions and 9 deletions

View File

@ -0,0 +1,9 @@
{{ define "main" }}
<h1>Posts</h1>
{{ range .Pages }}
<article>
<h2>{{ .Title }}</h2>
{{ .Content }}
</article>
{{ end }}
{{ end }}