Initial commit

This commit is contained in:
Konstantin Kollar
2022-10-03 21:13:35 +02:00
commit 8529ee86e4
1120 changed files with 276225 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
{{ define "main"}} {{ range .Pages }} {{ .Title }} {{ end }} {{ end }}
+20
View File
@@ -0,0 +1,20 @@
{{ define "main"}}
<article class="prose prose-lg mt-10">
<h1 class="text-neutral-600">{{ .Title }}</h1>
{{ .Content }}
</article>
<div class="flex flex-row justify-between">
<div>
{{ if .PrevPage }}
<a href="{{ .PrevPage.Permalink}}">{{ .PrevPage.Title }}</a>
{{ end }}
</div>
<div>
{{ if .NextPage }}
<a href="{{ .NextPage.Permalink}}">{{ .NextPage.Title }}</a>
{{ end }}
</div>
</div>
{{ end }}