aboutsummaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-05-04 04:06:12 -0400
committertdro <tdro@noreply.example.com>2022-05-04 04:06:12 -0400
commit449bb1f4caa02a495ebcec65a0a412fb726b15b8 (patch)
treeea7b9d09153e62ec6c4745270c329f6463f4327b /themes
parentd4570297d931c001b3a95ba3ab5f3891fd8a99f9 (diff)
downloadcanory-449bb1f4caa02a495ebcec65a0a412fb726b15b8.tar.gz
canory-449bb1f4caa02a495ebcec65a0a412fb726b15b8.tar.bz2
canory-449bb1f4caa02a495ebcec65a0a412fb726b15b8.zip
themes/default/layouts/partials/manifest: Remove double relative
Diffstat (limited to 'themes')
-rw-r--r--themes/default/layouts/partials/manifest.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/default/layouts/partials/manifest.html b/themes/default/layouts/partials/manifest.html
index 01ec541..10aa1aa 100644
--- a/themes/default/layouts/partials/manifest.html
+++ b/themes/default/layouts/partials/manifest.html
@@ -6,10 +6,10 @@
{{ $ico := $icon32.Content | resources.FromString "/favicon.ico" }}
-<link rel="icon" href="{{ $ico.RelPermalink | relURL }}">
-<link rel="icon" type="image/png" sizes="16x16" href="{{ $icon16.RelPermalink | relURL }}">
-<link rel="icon" type="image/png" sizes="32x32" href="{{ $icon32.RelPermalink | relURL }}">
-<link rel="apple-touch-icon" sizes="180x180" href="{{ $appleTouchIcon.RelPermalink | relURL }}">
+<link rel="icon" href="{{ $ico.RelPermalink | absURL }}">
+<link rel="icon" type="image/png" sizes="16x16" href="{{ $icon16.RelPermalink | absURL }}">
+<link rel="icon" type="image/png" sizes="32x32" href="{{ $icon32.RelPermalink | absURL }}">
+<link rel="apple-touch-icon" sizes="180x180" href="{{ $appleTouchIcon.RelPermalink | absURL }}">
<link rel="manifest" href="{{ .Site.BaseURL }}/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">