Fix: breadcrumb

This commit is contained in:
hyzen
2026-06-05 16:54:58 +05:30
parent d7b18fd92c
commit 86ccfc68ef
58 changed files with 491 additions and 355 deletions

View File

@@ -1,23 +1,20 @@
{{ define "main" }}
<nav class="uninotes-breadcrumbs breadcrumbs">
<a href="/blog/">Blog</a>
<span>Categories</span>
<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>
<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 }}
{{ 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 }}