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

@@ -0,0 +1,19 @@
{{ define "main" }}
<nav class="uninotes-breadcrumbs breadcrumbs">
<a href="/uninotes/">UniNotes</a>
</nav>
<h1>UniNotes</h1>
{{/* Pull all semester terms from the taxonomy */}}
{{ $semesterTaxonomy := site.Taxonomies.semester }}
{{ $semesters := $semesterTaxonomy.Alphabetical }}
<ul class="uninotes-list">
{{ range $semesters }}
<li class="uninotes-list__item">
<a class="uninotes-list__link" href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}