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

github.com/pavel-pi/kiss-em.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmir Ribić <ribice@gmail.com>2020-03-29 21:36:37 +0300
committerGitHub <noreply@github.com>2020-03-29 21:36:37 +0300
commit328762da566636d17d49c80f745440321c3e2271 (patch)
treee3a663b9da1821c2d5ce4ac447cc327eae6fc0da
parent99e5f2b08fc846868f3162a0a9d78a71d83cb961 (diff)
parent43d6375ef538c733c91c4061b8f76fdc8bbdf42c (diff)
Merge pull request #95 from midzer/patch-1
close url in tag links
-rw-r--r--layouts/partials/tags.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/partials/tags.html b/layouts/partials/tags.html
index 8fa67c8..c54f5c5 100644
--- a/layouts/partials/tags.html
+++ b/layouts/partials/tags.html
@@ -1,9 +1,9 @@
{{ range first 1 . }}
-<a class="subtitle is-6" href="{{ "/tags/" | relURL }}{{ . | urlize }}">#{{ . }}</a>
+<a class="subtitle is-6" href="{{ "/tags/" | relURL }}{{ . | urlize }}/">#{{ . }}</a>
{{ end }}
{{ if gt (len .) 1 }}
{{ range after 1 . }}
- | <a class="subtitle is-6" href="{{ "/tags/" | relURL }}{{ . | urlize }}">#{{ . }}</a>
+ | <a class="subtitle is-6" href="{{ "/tags/" | relURL }}{{ . | urlize }}/">#{{ . }}</a>
{{ end }}
-{{ end }} \ No newline at end of file
+{{ end }}