Initial commit

This commit is contained in:
2021-05-31 22:36:54 +02:00
commit 50801d45ce
99 changed files with 4299 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
<div id="content">
{{- block "main" . }}{{- end }}
</div>
{{- partial "footer.html" . -}}
</body>
</html>

View File

@@ -0,0 +1,13 @@
{{ define "main" }}
<div class="container flex-row j-center wrap p-30">
{{range .Pages}}
<a href="{{.Permalink}}">
<div class="max-w-200 flex-1">
<h3 class="primary ta-c">{{.Title}}</h3>
</div>
</a>
{{end}}
</div>
{{end}}

View File

@@ -0,0 +1,7 @@
{{ define "main" }}
<div class="container content">
{{.Content}}
</div>
{{ end }}