refactor taxonomy

This commit is contained in:
Drew 2025-04-02 16:02:25 -06:00
parent 65d93c6d25
commit 1b6df5e889
4 changed files with 15 additions and 64 deletions

View File

@ -1,6 +1,6 @@
{{ define "main" }} {{ define "main" }}
<header class="my-8"> <header class="my-8">
<p class="text-center font-iosevka">Topic</p> <p class="text-center font-iosevka capitalize">{{ .Data.Singular }}</p>
<h1 class="text-4xl font-bold text-center capitalize">{{ .Title }}</h1> <h1 class="text-4xl font-bold text-center capitalize">{{ .Title }}</h1>
</header> </header>
<main class="container mx-auto"> <main class="container mx-auto">
@ -9,14 +9,18 @@
</ul> </ul>
<section> <section>
<h2 class="text-2xl my-8 font-bold text-center">Other Topics</h2> <h2 class="text-4xl my-8 font-bold text-center">Other {{ .Data.Plural | title }}</h2>
<div class="tag-cloud font-iosevka text-gray-600"> <div class="tag-cloud font-iosevka text-gray-600 text-center">
{{ $tags := .Site.Taxonomies.tags }} {{ $terms := index .Site.Taxonomies .Data.Plural }}
{{ range $tag, $pages := $tags }} {{ range $term, $pages := $terms }}
<a href="{{ "/tags/" | relLangURL }}{{ $tag | urlize }}" style="font-size: {{ add 1 (div (len $pages) 2) }}em;" {{ if ne $term $.Title }}
class="tag text-sm inline-block p-2 my-1 border border-gray-100 rounded-lg hover:bg-yellow-100 whitespace-nowrap"> {{ with $.Site.GetPage (printf "/%s/%s" $.Data.Plural ($term | urlize)) }}
{{ $tag }} <a href="{{ .RelPermalink }}"
</a> class="tag inline-block p-2 my-1 border border-gray-100 rounded-lg hover:bg-yellow-100 whitespace-nowrap">
{{ .Title }}
</a>
{{ end }}
{{ end }}
{{ end }} {{ end }}
</div> </div>
</section> </section>

View File

@ -7,8 +7,8 @@
<div class="flex gap-4"> <div class="flex gap-4">
<aside class="lg:sticky lg:top-0 lg:h-screen lg:overflow-y-auto lg:w-1/3 p-4 font-iosevka"> <aside class="lg:sticky lg:top-0 lg:h-screen lg:overflow-y-auto lg:w-1/3 p-4 font-iosevka">
<p><strong>Date:</strong> <time datetime="{{ .Date.Format " 2006-01-02" }}">{{ .Date.Format "January 2, 2006" }}</time></p> <p><strong>Date:</strong> <time datetime="{{ .Date.Format " 2006-01-02" }}">{{ .Date.Format "January 2, 2006" }}</time></p>
<p><strong>Narrator:</strong> {{ .Params.narrator }}</p> <p><strong>Narrator:</strong> <a href="{{ "/narrator/" | relLangURL }}{{ .Params.narrator | urlize }}">{{ .Params.narrator }}</a></p>
<p><strong>Facilitator:</strong> {{ .Params.facilitator }}</p> <p><strong>Facilitator:</strong> <a href="{{ "/facilitator/" | relLangURL }}{{ .Params.facilitator | urlize }}">{{ .Params.facilitator }}</a></p>
<p><strong>Subject:</strong> {{ .Params.subject }}</p> <p><strong>Subject:</strong> {{ .Params.subject }}</p>
<p><strong>Topics:</strong> {{ partial "tags.html" . }}</p> <p><strong>Topics:</strong> {{ partial "tags.html" . }}</p>
{{ if .Params.links }} {{ if .Params.links }}

View File

@ -1,28 +0,0 @@
{{ define "main" }}
<header class="my-8">
<p class="text-center font-iosevka">Facilitator</p>
<h1 class="text-4xl font-bold text-center capitalize">{{ .Title }}</h1>
</header>
<main class="container mx-auto">
<ul class="mt-4 space-y-4">
{{ $pages := .Pages }}
{{ partial "article-list.html" (dict "Pages" $pages) }}
</ul>
{{ if gt .Site.Taxonomies.facilitator 1 }}
<section>
<h2 class="text-4xl my-8 font-bold text-center">Other Facilitators</h2>
<div class="tag-cloud font-iosevka text-gray-600">
{{ range $facilitator, $pages := .Site.Taxonomies.facilitator }}
{{ if ne $facilitator $.Title }}
<a href="{{ "/facilitator/" | relLangURL }}{{ $facilitator | urlize }}"
class="tag text-sm inline-block p-2 my-1 border border-gray-100 rounded-lg hover:bg-yellow-100 whitespace-nowrap">
{{ $facilitator }}
</a>
{{ end }}
{{ end }}
</div>
</section>
{{ end }}
</main>
{{ end }}

View File

@ -1,25 +0,0 @@
{{ define "main" }}
<header class="my-8">
<p class="text-center font-iosevka">Narrator</p>
<h1 class="text-4xl font-bold text-center capitalize">{{ .Title }}</h1>
</header>
<main class="container mx-auto">
<ul class="mt-4 space-y-4">
{{ $pages := .Pages }}
{{ partial "article-list.html" (dict "Pages" $pages) }}
</ul>
<section>
<h2 class="text-4xl my-8 font-bold text-center">Other Narrators</h2>
<div class="tag-cloud font-iosevka text-gray-600 text-center">
{{ $narrators := .Site.Taxonomies.narrator }}
{{ range $narrator, $pages := $narrators }}
<a href="{{ "/narrator/" | relLangURL }}{{ $narrator | urlize }}"
class="tag inline-block p-2 my-1 border border-gray-100 rounded-lg hover:bg-yellow-100 whitespace-nowrap">
{{ $narrator| humanize }}
</a>
{{ end }}
</div>
</section>
</main>
{{ end }}