refactor: use relLangURL to build relative links

For better i18n support

Fixes archive page path
Remove tag cloud term exclusion

closes https://github.com/CaiJimmy/hugo-theme-stack/issues/8
This commit is contained in:
Jimmy Cai
2020-09-13 10:14:17 +02:00
parent 822eba9513
commit 2451b194dc
4 changed files with 7 additions and 8 deletions
@@ -2,7 +2,7 @@
{{ with $tags := .Params.Tags }}
<section class="article-tags">
{{ range $tags }}
<a href="/tags/{{ . | urlize }}">{{ . | humanize }}</a>
<a href="{{ printf `tags/%s` (. | urlize) | relLangURL }}">{{ . | humanize }}</a>
{{ end }}
</section>
{{ end }}