Fix browse-by-tag link

This commit is contained in:
Fadhil Yaacob 2020-08-22 10:33:35 +08:00
parent 559ccfe896
commit 7f63494248
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<ul class="tags__list">
{{ range $tag, $value := $.Site.Taxonomies.tags }}
<li class="tag__item">
<a class="tag__link" href="{{ "/tags/" | relLangURL}}{{ $tag | urlize }}">{{ $tag | urlize }} ({{ len $value }})</a>
<a class="tag__link" href="{{ "/tags/" | relLangURL}}{{ $tag | urlize }}/">{{ $tag | urlize }} ({{ len $value }})</a>
</li>
{{ end }}
</ul>