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

github.com/EmielH/tale-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlberki <lberki@users.noreply.github.com>2022-03-27 18:51:06 +0300
committerGitHub <noreply@github.com>2022-03-27 18:51:06 +0300
commit93a5ae3a16c5654414af8c0c83699b165a2d2bcf (patch)
tree05ac0984f2105a8521ed151aae8b63f75b02293d
parent7caa7d42181ed6ffa4030dba28973a0a1fbe1b27 (diff)
Fix favicon.ico links
Unlike the other links to favicon, this one was not passed through relURL. Co-authored-by: Lukacs T. Berki <blog@lberki.net>
-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 81e8bf4..fe10a91 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -23,7 +23,7 @@
{{ end -}}
<!-- Favicon -->
- <link rel="icon" href="favicon.ico" />
+ <link rel="icon" href="{{ "favicon.ico" | relURL }}"/>
<link rel="icon" type="image/png" sizes="32x32" href="{{ "images/favicon-32x32.png" | relURL }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ "images/favicon-16x16.png" | relURL }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ "images/apple-touch-icon.png" | relURL }}">