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

github.com/Vimux/Binario.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVimux <Vimux@users.noreply.github.com>2022-04-15 20:45:07 +0300
committerGitHub <noreply@github.com>2022-04-15 20:45:07 +0300
commit8e6814b45ab7066ef07d5ec2e998438713fc6377 (patch)
treee84c3c8269cb14587bb3ad5067feb63d816bf2f9
parent2e5cfdbdb9761020217160003f50ac45cf9e3d4f (diff)
parent81fa13ce710f2825c744e165c3dafef88b2263cd (diff)
Merge pull request #68 from zutto/TAGS_URL
Entry/meta/tags: remove space character from a href to avoid %20 appearing in URL's
-rw-r--r--layouts/partials/entry/meta/tags.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/entry/meta/tags.html b/layouts/partials/entry/meta/tags.html
index 4841655..dace09e 100644
--- a/layouts/partials/entry/meta/tags.html
+++ b/layouts/partials/entry/meta/tags.html
@@ -2,7 +2,7 @@
<div class="entry__meta-tags meta-tags">
<span class="meta-tags__list">{{ T "meta_tags" }}:
{{- 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>
{{- end }}