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

github.com/janraasch/hugo-scroll.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Raasch <jan@janraasch.com>2020-07-09 12:32:05 +0300
committerJan Raasch <jan@janraasch.com>2020-07-09 12:32:05 +0300
commit78400b82f40c53e68bb8c2acbcf2587e0422586d (patch)
tree22ba13f371aacd55ee7f9c504ae310c38e4fff88
parentbeeee2858b1f400fa1bef7132f244221656431d3 (diff)
chore: use relative url
Otherwise this breaks on https://janraasch.github.io/hugo-scroll/services/
-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 0df389d..4909f18 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -2,7 +2,7 @@
<main class="content page-template page-{{ .Slug }}" role="main">
<article class="post page">
<header class="post-header">
- <a id="blog-logo" href="{{ "/" | absURL }}">
+ <a id="blog-logo" href="{{ "/" | relURL }}">
{{ .Site.Title }}
</a>
</header>
@@ -12,4 +12,4 @@
</section>
</article>
</main>
-{{ end }} \ No newline at end of file
+{{ end }}