2021-08-11 05:28:33 +00:00
|
|
|
{{ define "main" }}
|
2021-08-18 02:54:18 +00:00
|
|
|
{{ 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>
|
2021-08-18 02:54:18 +00:00
|
|
|
<a
|
2021-08-20 03:56:45 +00:00
|
|
|
class="text-xl font-medium hover:underline hover:underline-primary-500 hover:underline-offset-small"
|
2021-08-25 23:44:41 +00:00
|
|
|
href="{{ .Page.RelPermalink }}"
|
2021-08-11 05:28:33 +00:00
|
|
|
>{{ .Page.Title }}</a
|
|
|
|
>
|
2021-08-14 04:44:34 +00:00
|
|
|
{{ if $.Site.Params.taxonomy.showTermCount | default true }}
|
2021-08-20 07:02:08 +00:00
|
|
|
<span class="text-base text-neutral-400">
|
2021-08-18 02:54:18 +00:00
|
|
|
<span class="px-1 text-primary-500">·</span>
|
2021-08-14 04:44:34 +00:00
|
|
|
{{ .Count }}
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
2021-08-11 05:28:33 +00:00
|
|
|
</h2>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
|
|
|
{{ end }}
|