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