This commit is contained in:
2026-05-25 22:53:28 +02:00
parent 77ff06348a
commit e1fe3e1bc5
96 changed files with 18132 additions and 590 deletions

View File

@@ -0,0 +1,14 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<div class="time-list">
<ul>
{{ range .Pages }}
<li>
<span>{{- partial "date" .Date -}}</span>
<div><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></div>
</li>
{{ end }}
</ul>
</div>
{{ end }}