congo/layouts/_default/taxonomy.html

23 lines
752 B
HTML
Raw Normal View History

2021-08-11 05:28:33 +00:00
{{ define "main" }}
{{ partial "section-header.html" . }}
2021-08-11 05:28:33 +00:00
<section class="flex flex-wrap -mx-2 overflow-hidden">
2021-08-11 07:21:24 +00:00
{{ range .Data.Terms }}
<article class="w-full px-2 my-3 overflow-hidden sm:w-1/2 md:w-1/3 lg:w-1/4 xl:w-1/5">
2021-08-11 05:28:33 +00:00
<h2>
<a
class="text-xl font-medium hover:underline underline-primary-500"
href="{{ .Page.Permalink }}"
2021-08-11 05:28:33 +00:00
>{{ .Page.Title }}</a
>
{{ if $.Site.Params.taxonomy.showTermCount | default true }}
<span class="text-base text-gray-400">
<span class="px-1 text-primary-500">&middot;</span>
{{ .Count }}
</span>
{{ end }}
2021-08-11 05:28:33 +00:00
</h2>
</article>
{{ end }}
</section>
{{ end }}