Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jakewies/hugo-theme-codex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFadhil Yaacob <mohamadfadhil.yaacob@onapp.com>2020-08-22 05:33:35 +0300
committerFadhil Yaacob <mohamadfadhil.yaacob@onapp.com>2020-08-22 05:33:35 +0300
commit01d6d78f9d17f726e49f286da10589c8cfe15836 (patch)
tree72c36bee97f3b8f395a76c58a2fa2d134029e67e /layouts
parent4128b8474f3a7230bebf5708c33e911b21dea761 (diff)
Fix browse-by-tag link
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/browse-by-tag.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/browse-by-tag.html b/layouts/partials/browse-by-tag.html
index 6ca703d..f08d539 100644
--- a/layouts/partials/browse-by-tag.html
+++ b/layouts/partials/browse-by-tag.html
@@ -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>