From 173ad31d474e59073c939d6688e6806f0e03f788 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 28 Dec 2022 11:19:11 -0500 Subject: [PATCH] Fix tags too --- themes/red/layouts/_default/listart.html | 2 +- themes/red/layouts/partials/breadcrumbs.html | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/themes/red/layouts/_default/listart.html b/themes/red/layouts/_default/listart.html index 1bfdf4d..b3dcec8 100644 --- a/themes/red/layouts/_default/listart.html +++ b/themes/red/layouts/_default/listart.html @@ -3,7 +3,7 @@ {{ end }} diff --git a/themes/red/layouts/partials/breadcrumbs.html b/themes/red/layouts/partials/breadcrumbs.html index cb79a3c..074c0d7 100644 --- a/themes/red/layouts/partials/breadcrumbs.html +++ b/themes/red/layouts/partials/breadcrumbs.html @@ -1,6 +1,15 @@ {{ if not .IsHome }} {{- range .Ancestors.Reverse }} - {{ .Title }} / + {{ if eq .Title "Arttags" }} + Tags + {{ else }} + {{ if eq .Title "Characters" }} + Characters + {{ else }} + {{ .Title }} + {{ end }} + {{ end }} + / {{- end }} {{ .Title }} {{ end }}