mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
tags: fix non-latin tag display on pages #378
This commit is contained in:
parent
6ef984c36a
commit
0b6f55f247
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
<div class="tags">
|
||||
{{- range sort .Params.tags }}
|
||||
{{- $tag := . }}
|
||||
{{- with $page.Site.GetPage (printf "%s%s" ("/tags/" | relURL ) ( $tag | urlize ) ) }}
|
||||
{{- with $page.Site.GetPage (printf "%s%s" ("/tags/" | relURL ) $tag ) }}
|
||||
{{- $to := . }}
|
||||
<a class="tag-link" href="{{ partial "relLangPrettyUglyURL.hugo" (dict "page" $page "to" $to) }}">{{ $tag }}</a>
|
||||
{{- end }}
|
||||
|
|
Loading…
Reference in a new issue