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

github.com/gyorb/hugo-dusk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorButt4cak3 <butt4cak3@gmail.com>2017-06-23 21:09:42 +0300
committerButt4cak3 <butt4cak3@gmail.com>2017-06-23 21:09:42 +0300
commita4892be35d25edfdda313e9025009d9cdaa944ac (patch)
tree7db5964a332d60347c7f8412a95904a1f8632564
parent01b9311773bffa3404e1f1d9f16711fab73978fe (diff)
Fixed tag URLs
-rw-r--r--layouts/partials/tags.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/tags.html b/layouts/partials/tags.html
index d9dfd11..f821779 100644
--- a/layouts/partials/tags.html
+++ b/layouts/partials/tags.html
@@ -2,7 +2,7 @@
<div class="tags">
{{ range .Params.tags }}
<div class="tag">
- <a href="/tags/{{.}}">#{{.}}</a>
+ <a href="/tags/{{ . | urlize }}">#{{.}}</a>
</div>
{{ end }}
</div>