From f27fede219eb2a32563fca278e4aebdb1ae3d832 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Wed, 29 Mar 2023 17:38:27 -0700 Subject: [PATCH] Fix favicon paths --- layouts/partials/paige/links.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/layouts/partials/paige/links.html b/layouts/partials/paige/links.html index 615a11b4..2fb5269f 100644 --- a/layouts/partials/paige/links.html +++ b/layouts/partials/paige/links.html @@ -1,34 +1,34 @@ {{ $page := . }} -{{ if fileExists "apple-touch-icon.png" }} +{{ if fileExists "static/apple-touch-icon.png" }} {{ end }} -{{ if fileExists "favicon.ico" }} +{{ if fileExists "static/favicon.ico" }} {{ end }} -{{ if fileExists "favicon.png" }} +{{ if fileExists "static/favicon.png" }} {{ end }} -{{ if fileExists "favicon.svg" }} +{{ if fileExists "static/favicon.svg" }} {{ end }} -{{ if fileExists "favicon-16x16.png" }} +{{ if fileExists "static/favicon-16x16.png" }} {{ end }} -{{ if fileExists "favicon-32x32.png" }} +{{ if fileExists "static/favicon-32x32.png" }} {{ end }} -{{ if fileExists "safari-pinned-tab.svg" }} +{{ if fileExists "static/safari-pinned-tab.svg" }} {{ end }} -{{ if fileExists "site.webmanifest" }} +{{ if fileExists "assets/site.webmanifest" }} {{ end }}