summaryrefslogtreecommitdiffstats
path: root/themes/aoidh
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-01-21 17:34:37 -0500
committerSam Anthony <sam@samanthony.xyz>2026-01-21 17:34:37 -0500
commit8f0a341644fb0d9575b5429ca6193609a4d12d02 (patch)
treee968bb900ff92ebdeda8a7fa98287bd627c08fc9 /themes/aoidh
parent7e971e862a43361ec77c3b2c7a4345dd9e771784 (diff)
downloadsamanthony.xyz-8f0a341644fb0d9575b5429ca6193609a4d12d02.zip
tags
Diffstat (limited to 'themes/aoidh')
-rw-r--r--themes/aoidh/assets/aoidh.css2
-rw-r--r--themes/aoidh/layouts/_partials/terms.html23
2 files changed, 1 insertions, 24 deletions
diff --git a/themes/aoidh/assets/aoidh.css b/themes/aoidh/assets/aoidh.css
index 0d52fc3..caf22b4 100644
--- a/themes/aoidh/assets/aoidh.css
+++ b/themes/aoidh/assets/aoidh.css
@@ -154,7 +154,7 @@ th, td {
vertical-align: middle;
}
-th {
+th, th * {
font-weight: 500;
}
diff --git a/themes/aoidh/layouts/_partials/terms.html b/themes/aoidh/layouts/_partials/terms.html
deleted file mode 100644
index 8a6ebec..0000000
--- a/themes/aoidh/layouts/_partials/terms.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{{- /*
-For a given taxonomy, renders a list of terms assigned to the page.
-
-@context {page} page The current page.
-@context {string} taxonomy The taxonomy.
-
-@example: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
-*/}}
-
-{{- $page := .page }}
-{{- $taxonomy := .taxonomy }}
-
-{{- with $page.GetTerms $taxonomy }}
- {{- $label := (index . 0).Parent.LinkTitle }}
- <div>
- <div>{{ $label }}:</div>
- <ul>
- {{- range . }}
- <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
- {{- end }}
- </ul>
- </div>
-{{- end }}