Initial commit

This commit is contained in:
Nox Sluijtman 2023-08-10 03:39:50 +02:00
commit 07a9f6baba
13 changed files with 875 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
{{- partial "head.html" . -}}
<title>{{ if .IsHome }}{{$.Site.Title}}{{ else }}{{ .Title }} | {{ $.Site.Title }}{{ end }}</title>
</head>
<body>
{{- partial "header.html" . -}}
<main>
{{- block "main" . }}{{- end }}
</main>
{{- partial "footer.html" . -}}
</body>
</html>