diff --git a/layouts/partials/single/footer.html b/layouts/partials/single/footer.html
index 0d48d604..0c3aee0c 100644
--- a/layouts/partials/single/footer.html
+++ b/layouts/partials/single/footer.html
@@ -63,7 +63,7 @@
{{- range $value := . -}}
{{- $tag := partialCached "function/path.html" $value $value | printf "/tags/%v" | $.Site.GetPage -}}
{{- with $tag -}}
-
{{- end -}}
{{- end -}}
{{- end -}}
@@ -75,14 +75,14 @@
{{- with .Prev -}}
-
+
{{- dict "Class" "fa-solid fa-angle-left fa-fw" | partial "plugin/icon.html" -}}
- {{- .Title -}}
+ {{- .LinkTitle -}}
{{- end -}}
{{ with .Next }}
-
- {{- .Title -}}
+
+ {{- .LinkTitle -}}
{{- dict "Class" "fa-solid fa-angle-right fa-fw" | partial "plugin/icon.html" -}}
{{- end -}}
diff --git a/layouts/partials/single/post-included-in.html b/layouts/partials/single/post-included-in.html
index ee614adb..3183e148 100644
--- a/layouts/partials/single/post-included-in.html
+++ b/layouts/partials/single/post-included-in.html
@@ -4,9 +4,9 @@
{{- $categories = $categories | append (
printf `
%v %v`
(partial "function/escapeurl.html" $category.RelPermalink)
- (printf "%v - %v" (T "category") $category.Title)
+ (printf "%v - %v" (T "category") $category.LinkTitle)
(dict "Class" "fa-regular fa-folder fa-fw" | partial "plugin/icon.html")
- $category.Title
+ $category.LinkTitle
) -}}
{{- end -}}
{{- $categoriesStr := delimit $categories " " -}}
@@ -17,9 +17,9 @@
{{- $collections = $collections | append (
printf `
%v %v`
(partial "function/escapeurl.html" $collection.RelPermalink)
- (printf "%v - %v" (T "collection") $collection.Title)
+ (printf "%v - %v" (T "collection") $collection.LinkTitle)
(dict "Class" "fa-solid fa-layer-group fa-fw" | partial "plugin/icon.html")
- $collection.Title
+ $collection.LinkTitle
) -}}
{{- end -}}
{{- $collectionStr := delimit $collections " " -}}
diff --git a/layouts/taxonomy/list.html b/layouts/taxonomy/list.html
index 1b0d59b1..57c671d2 100644
--- a/layouts/taxonomy/list.html
+++ b/layouts/taxonomy/list.html
@@ -37,7 +37,7 @@
{{ .Key }}
{{- range .Pages -}}
- {{- .Title -}}
+ {{- .LinkTitle -}}
{{- .Date | dateFormat ($.Site.Params.list.dateFormat | default "01-02") -}}
diff --git a/layouts/taxonomy/terms/categories.html b/layouts/taxonomy/terms/categories.html
index 26f2b436..812bf9e3 100644
--- a/layouts/taxonomy/terms/categories.html
+++ b/layouts/taxonomy/terms/categories.html
@@ -15,7 +15,7 @@
{{- range first 5 $pages -}}
- {{- .Title -}}
+ {{- .LinkTitle -}}
{{- end -}}
{{- if gt (len $pages) 5 -}}
diff --git a/layouts/taxonomy/terms/collections.html b/layouts/taxonomy/terms/collections.html
index df7461c5..64627df9 100644
--- a/layouts/taxonomy/terms/collections.html
+++ b/layouts/taxonomy/terms/collections.html
@@ -15,7 +15,7 @@
{{- range first 5 $pages -}}
- {{- .Title -}}
+ {{- .LinkTitle -}}
{{- end -}}
{{- if gt (len $pages) 5 -}}
diff --git a/layouts/taxonomy/terms/tags.html b/layouts/taxonomy/terms/tags.html
index a0a00842..777842cf 100644
--- a/layouts/taxonomy/terms/tags.html
+++ b/layouts/taxonomy/terms/tags.html
@@ -11,11 +11,11 @@
{{- range $tags -}}
{{- $grade := math.Min (math.Floor (div (sub .Count 1) $baseGrade)) 10 -}}
{{- $fontSize := add $minFont (mul $grade $baseFont) -}}
- {{ .Page.Title }} {{ .Count }}
+ {{ .Page.LinkTitle }} {{ .Count }}
{{- end -}}
{{- else -}}
{{- range $.Site.Taxonomies.tags.ByCount -}}
- {{ .Page.Title }} {{ .Count }}
+ {{ .Page.LinkTitle }} {{ .Count }}
{{- end -}}
{{- end -}}