Fix: date in services

This commit is contained in:
hyzen
2026-04-09 02:41:03 +05:30
parent fc6125a69a
commit 426c3f2f60
56 changed files with 776 additions and 825 deletions

View File

@@ -1 +1,20 @@
{{ define "main" }} <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 }}
{{ 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 }}