2025-06-07 02:33:02 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
<article class="h-feed">
|
|
|
|
<header>
|
|
|
|
<h1 class="p-name">{{ .Title }}</h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
{{ range .Site.RegularPages.GroupByDate "2006" }}
|
|
|
|
<section>
|
|
|
|
<h2>{{ .Key }}</h2>
|
|
|
|
{{- range .Pages }}
|
2025-06-17 01:35:34 +02:00
|
|
|
{{ .Render "list-item" }}
|
2025-06-07 02:33:02 +02:00
|
|
|
{{- end }}
|
|
|
|
</section>
|
|
|
|
{{- end }}
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
|