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

github.com/EmielH/stip-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiel Hollander <EmielH@users.noreply.github.com>2019-04-07 23:37:43 +0300
committerEmiel Hollander <EmielH@users.noreply.github.com>2019-04-07 23:37:43 +0300
commit0d9f33e80c21b62c790ed15ae060fa385c7f10ad (patch)
treeb90bbb9c2afa4e837201f14fc7e8fd0b297e2c1d
parent0ce58343656e6175312633f556c3f55f556541ac (diff)
Change background image to use absURL
This is needed for the demo site to work out of the box See https://github.com/gohugoio/hugoThemes/issues/620
-rw-r--r--layouts/partials/head.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index f7478f3..e342025 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -24,7 +24,7 @@
<style>
body {
- background: url('{{ "images/background.jpg" | relURL }}');
+ background: url('{{ "images/background.jpg" | absURL }}');
}
</style>