diff --git a/layouts/partials/post-info.html b/layouts/partials/post-info.html
index b56c8f2..95c5b9a 100644
--- a/layouts/partials/post-info.html
+++ b/layouts/partials/post-info.html
@@ -16,7 +16,7 @@
{{ if .Params.categories }}
{{ range $cat_name := .Params.categories }}
- {{ $cat := ($.Site.GetPage (printf "/categories/%s" $cat_name)) }}
+ {{ $cat := ($.Site.GetPage (printf "/categories/%s" $cat_name | urlize )) }}
- {{ $cat.Title | default $cat_name }}
{{ end }}
@@ -24,7 +24,7 @@
{{ if .Params.tags }}
{{ range $tag_name := .Params.tags }}
- {{ $tag := ($.Site.GetPage (printf "/tags/%s" $tag_name)) }}
+ {{ $tag := ($.Site.GetPage (printf "/tags/%s" $tag_name | urlize )) }}
- #{{ $tag.Title | default $tag_name }}
{{ end }}
@@ -32,7 +32,7 @@
{{ if .Params.authors }}
{{ range $author_name := .Params.authors }}
- {{ $author := ($.Site.GetPage (printf "/authors/%s" $author_name)) }}
+ {{ $author := ($.Site.GetPage (printf "/authors/%s" $author_name | urlize )) }}
- @{{ $author_name }}
{{ end }}