Updating to make blog work

This commit is contained in:
Timothy Rogers 2021-08-29 17:55:47 -04:00
parent c5892a5972
commit 8d9671e2f0
3 changed files with 34 additions and 2 deletions

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
<br>
<main role="main">
<div class="container">
{{- block "main" . }}{{- end }}
<h1>{{.Title}}</h1>
{{.Content}}
<ul>
<!-- Ranges through content/posts/*.md -->
{{ range .Pages }}
<li>
<a href="{{.Permalink}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a>
</li>
{{ end }}
</ul>
</div>
</main>
{{- partial "footer.html" . -}}
</body>
</html>