ccchh-website/themes/ccchh/layouts/blog/list.html

25 lines
630 B
HTML
Raw Permalink Normal View History

2023-10-02 12:08:18 +02:00
{{ define "main" }}
<main class="container" aria-role="main">
<header class="header">
<h1>{{ .Title }}</h1>
{{- with .Params.subtitle }}
2023-10-02 12:08:18 +02:00
<span class="subtitle">{{ . }}</span>
{{- end }}
2023-10-02 12:08:18 +02:00
<div class="nav-aside">
Filter nach Kategorie:
<ul class="aside">
{{- range .Site.Taxonomies.categories }}
2023-11-04 22:26:11 +01:00
<li><a href="{{ .Page.RelPermalink }}">[{{ .Page.Title }}]</a></li>
{{- end }}
</ul>
</div>
</header>
2023-10-02 12:08:18 +02:00
2023-11-03 20:36:12 +01:00
{{- range .Paginator.Pages }}
{{ .Render "summary" }}
{{- end }}
{{ partial "pagination.html" . }}
2023-10-02 12:08:18 +02:00
</main>
{{ end }}