congo/layouts/_default/taxonomy.html

19 lines
591 B
HTML
Raw Normal View History

2021-08-11 05:28:33 +00:00
{{ define "main" }}
{{ partial "section-heading.html" . }}
<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>
2021-08-11 07:21:24 +00:00
<a class="text-xl font-medium hover:underline" href="{{ .Page.Permalink }}"
2021-08-11 05:28:33 +00:00
>{{ .Page.Title }}</a
>
<span class="text-base text-gray-400">
<span class="px-1">&middot;</span>
{{ .Count }}
</span>
</h2>
</article>
{{ end }}
</section>
{{ end }}