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

github.com/dataCobra/hugo-vitae.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordataCobra <datacobra@mailbox.org>2020-08-01 10:13:34 +0300
committerdataCobra <datacobra@mailbox.org>2020-08-01 10:13:34 +0300
commit726ded44c06ed08bfdd333928a347e18fbbb2126 (patch)
tree976586384de28d37ff89163cc52e360a270b9f03
parent0272fb0308df0c9b2763ac498bf99563329ce5d8 (diff)
Fix tag links on page when site is in subdir #262.0-7
-rw-r--r--layouts/_default/single.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index c65c0fa..3e997f5 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -48,7 +48,7 @@
{{ range $key, $value := $taxonomy }}
{{ range $value.Pages }}
{{ if eq .LinkTitle $pagename }}
-<a href="/{{ $taxonomyname }}/{{ $key }}/"> {{ $key }} </a>
+<a href="{{ .Site.BaseURL }}{{ $taxonomyname }}/{{ $key }}/"> {{ $key }} </a>
{{ end }}
{{ end }}
{{ end }}