first commit

This commit is contained in:
2026-05-19 11:03:31 +02:00
commit 08c65a4a19
21 changed files with 757 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{{ define "main" }}
<section class="content-panel">
<div class="panel-header">
<h2>{{ .Title }}</h2>
{{ with .Description }}
<p class="panel-description">{{ . }}</p>
{{ end }}
</div>
<div class="post-grid">
{{ range .Pages }}
<article class="post-card">
<a href="{{ .RelPermalink }}">
<p class="card-meta">{{ .Date.Format "02.01.2006" }}</p>
<h3>{{ .Title }}</h3>
<p>{{ .Summary }}</p>
</a>
</article>
{{ end }}
</div>
</section>
{{ end }}