Create initial version

This commit is contained in:
2023-01-19 18:21:20 +01:00
commit 31a1ae2b30
36 changed files with 1156 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,13 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<!--{{ range .Pages.ByPublishDate.Reverse }}
<p>
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ partial "metadata.html" . }}
<a class="summary" href="{{ .RelPermalink }}">
<p>{{ .Summary }}</p>
</a>
</p>
{{ end }}-->
{{ end }}

View File

@@ -0,0 +1,4 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ end }}