fediversity.eu/themes/hugoplate/layouts/_default/terms.html

37 lines
1.2 KiB
HTML
Raw Normal View History

2024-03-27 12:24:18 +01:00
{{ define "main" }} {{ partial "page-header" . }}
2024-03-26 16:28:28 +01:00
2024-03-27 12:24:18 +01:00
<section class="section">
<div class="container">
<ul class="text-center">
{{/* categories */}} {{ if eq .Permalink (`categories/` | absLangURL) }}
{{ range site.Taxonomies.categories.ByCount }}
<li class="m-3 inline-block">
<a
href="{{ .Page.Permalink }}"
class="bg-theme-light text-dark dark:bg-darkmode-theme-light dark:text-darkmode-dark block rounded px-4 py-2 text-xl"
>
{{ .Page.Title }}
<span class="bg-body dark:bg-darkmode-body ml-2 rounded px-2">
{{ .Count }}
</span>
</a>
</li>
{{ end }} {{ end }} {{/* tags */}} {{ if eq .Permalink (`tags/` |
absLangURL) }} {{ range site.Taxonomies.tags.ByCount }}
<li class="m-3 inline-block">
<a
href="{{ .Page.Permalink }}"
class="bg-theme-light text-dark dark:bg-darkmode-theme-light dark:text-darkmode-dark block rounded px-4 py-2 text-xl"
>
{{ .Page.Title }}
<span class="bg-body dark:bg-darkmode-body ml-2 rounded px-2">
{{ .Count }}
</span>
</a>
</li>
{{ end }} {{ end }}
</ul>
</div>
</section>
2024-03-26 16:28:28 +01:00
{{ end }}