Files
hyzendust.github.io/layouts/taxonomy.html
2026-04-09 02:41:03 +05:30

21 lines
509 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{ define "main" }}
<nav class="uninotes-breadcrumbs breadcrumbs">
<a href="/blog/">Blog</a>
<span>Categories</span>
</nav>
<h1><a href="/blog/" style="text-decoration: none; color: var(--accent-color);">All Posts</a> | Categories</h1>
<section class="term-list">
{{ range .Data.Terms.Alphabetical }}
<h2 class="term-list__item">
<a class="term-list__link" href="{{ .Page.RelPermalink }}">
{{ .Page.Title }} ({{ .Count }})
</a>
</h2>
{{ end }}
</section>
{{ end }}