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:52:40 +0300
committerJan Raasch <jan@janraasch.com>2020-07-09 12:52:40 +0300
commit7853a2af06b1508f3e762d4b391fc343aba6c4b0 (patch)
treebdd5ac2f29ce2a91e85daa276b7b8833292c7148
parentd57996c1772ed1ef7b42798115e6d209de737172 (diff)
fix(exampleSite): fix template syntax
-rw-r--r--exampleSite/layouts/partials/custom_head.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/exampleSite/layouts/partials/custom_head.html b/exampleSite/layouts/partials/custom_head.html
index a63c593..0f92585 100644
--- a/exampleSite/layouts/partials/custom_head.html
+++ b/exampleSite/layouts/partials/custom_head.html
@@ -1,4 +1,4 @@
<!-- Generated via https://favicon.io/favicon-generator/ -->
-<link rel="apple-touch-icon" sizes="180x180" href="{{ 'images/apple-touch-icon.png' | absURL }}">
-<link rel="icon" type="image/png" sizes="32x32" href="{{ 'images/favicon-32x32.png' | absURL }}">
-<link rel="icon" type="image/png" sizes="16x16" href="{{ 'images/favicon-16x16.png' | absURL }}">
+<link rel="apple-touch-icon" sizes="180x180" href='{{ "images/apple-touch-icon.png" | absURL }}'>
+<link rel="icon" type="image/png" sizes="32x32" href='{{ "images/favicon-32x32.png" | absURL }}'>
+<link rel="icon" type="image/png" sizes="16x16" href='{{ "images/favicon-16x16.png" | absURL }}'>