Merge pull request #68 from zutto/TAGS_URL
Entry/meta/tags: remove space character from a href to avoid %20 appearing in URL's
This commit is contained in:
commit
8e6814b45a
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
||||||
<div class="entry__meta-tags meta-tags">
|
<div class="entry__meta-tags meta-tags">
|
||||||
<span class="meta-tags__list">{{ T "meta_tags" }}:
|
<span class="meta-tags__list">{{ T "meta_tags" }}:
|
||||||
{{- range $index, $category := .Params.tags }}{{ if gt $index 0 }}, {{ end }}
|
{{- range $index, $category := .Params.tags }}{{ if gt $index 0 }}, {{ end }}
|
||||||
<a class="meta-tags__link" href="{{ " tags/" | relLangURL }}{{ . | urlize | lower }}/" rel="tag">
|
<a class="meta-tags__link" href="{{ "tags/" | relLangURL }}{{ . | urlize | lower }}/" rel="tag">
|
||||||
{{- . -}}
|
{{- . -}}
|
||||||
</a>
|
</a>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
Loading…
Reference in a new issue