Files
fundor333.com/layouts/_default/term.html
fundor333 9c4ddb44ca Adds taxonomy and term templates
Introduces basic templates for taxonomy and term pages.

These templates provide a foundation for displaying taxonomies and terms,
including listing associated content.
2025-09-14 02:34:01 +02:00

14 lines
309 B
HTML

{{ define "main" }}
<div class="wrapper list-page">
<header class="header">
<h1 class="header-title center">{{ .Title }}</h1>
</header>
<main class="page-content" aria-label="Content">
{{ .Content }}
{{ range .Pages }}
{{ partial "postCard" . }}
{{ end }}
</div>
</main>
{{ end }}