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

github.com/kc0bfv/ticky_tacky_dark.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl <kc0bfv@gmail.com>2020-01-13 14:54:11 +0300
committerKarl <kc0bfv@gmail.com>2020-01-13 14:54:11 +0300
commitf3f7dddbc3c39340c05955c79d29d24250fbcdfb (patch)
tree7bcf324918ea323a04943d823715f94c156e1112
parentbc15e73e7db492010a0ffc2f8a64bd0242119071 (diff)
Fix relurl issue now
-rw-r--r--layouts/partials/head.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 6438b2b..8951a6e 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -42,13 +42,13 @@
<style>
{{ with .Site.Params.headerimages }}
#headerimg {
- background-image: url({{ index . 0 | safeURL }});
+ background-image: url({{ index . 0 | safeURL | relURL }});
background-size: cover;
}
{{ end }}
{{ with .Params.sideimages }}
#sideimage {
- background-image: url({{ index . 0 | safeURL }});
+ background-image: url({{ index . 0 | safeURL | relURL }});
background-size: cover;
}
{{ end }}