feat: Add index page
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-07-21 16:52:59 +02:00
parent 93828cf3c9
commit e5f065b738
3 changed files with 22 additions and 0 deletions

8
layouts/index.html Normal file
View File

@ -0,0 +1,8 @@
{{ define "main" }}
{{ .Content }}
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}