mirror of
https://git.adityakumar.xyz/hugo-theme-even.git
synced 2024-11-21 19:42:52 +00:00
fix(uglyurls): fix the path of tags in the case of uglyURLs = true. (#310)
This commit is contained in:
parent
fcf2021958
commit
564697987d
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@
|
||||||
{{ with .Params.tags -}}
|
{{ with .Params.tags -}}
|
||||||
<div class="post-tags">
|
<div class="post-tags">
|
||||||
{{ range . -}}
|
{{ range . -}}
|
||||||
<a href="{{ "tags" | relLangURL }}/{{ . | urlize }}/">{{ . }}</a>
|
<a href="{{ "tags" | relLangURL }}/{{ . | urlize }}{{ if $.Site.Params.uglyURLs }}.html{{ else }}/{{ end }}">{{ . }}</a>
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
</div>
|
</div>
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
Loading…
Reference in a new issue