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

github.com/tosi29/inkblotty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortosi29 <tosi16@gmail.com>2019-05-26 17:39:37 +0300
committertosi29 <tosi16@gmail.com>2019-05-26 17:39:37 +0300
commitf54e2820ef6310569cabcc3cf4c0e5bfa20a6781 (patch)
tree11e21bd71293d58b203e216e04e6b034a7334343
parent48ee7d780932d633407189fec3995f034fb229a9 (diff)
Fix link url
-rw-r--r--layouts/_default/single.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 1fa43c8..75aff24 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -25,7 +25,7 @@
{{ with .Params.categories }}
<span class="post-categories">
{{ range . }}
- <a href="{{- "categories/" | absURL -}}{{- . | urlize -}}" rel="tag">{{ . }}</a>
+ <a href="{{- "/categories/" | absURL -}}{{- . | urlize -}}" rel="tag">{{ . }}</a>
{{ end }}
</span>
{{ end }}
@@ -33,7 +33,7 @@
{{ with .Params.tags }}
<span class="post-tags">
{{ range . }}
- <a href="{{- "tags/" | absURL -}}{{- . | urlize -}}" rel="tag">{{ . }}</a>
+ <a href="{{- "/tags/" | absURL -}}{{- . | urlize -}}" rel="tag">{{ . }}</a>
{{ end }}
</span>
{{ end }}