diff --git a/services/web/app/views/_metadata.pug b/services/web/app/views/_metadata.pug index 883113dff4..ec25b7f953 100644 --- a/services/web/app/views/_metadata.pug +++ b/services/web/app/views/_metadata.pug @@ -95,3 +95,9 @@ meta(name="twitter:card", content=metadata && metadata.twitterCardType ? metadat //- Viewport if metadata && metadata.viewport meta(name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes") + +//- Icons +link(rel="icon", href="/" + settings.brandPrefix + "favicon.ico") +link(rel="icon", sizes="192x192", href="/" + settings.brandPrefix + "touch-icon-192x192.png") +link(rel="apple-touch-icon-precomposed", href="/" + settings.brandPrefix + "apple-touch-icon-precomposed.png") +link(rel="mask-icon", href="/" + settings.brandPrefix + "mask-favicon.svg", color=settings.brandPrefix === 'sl-' ? "#a93529" : "#4f9c45") diff --git a/services/web/app/views/layout.pug b/services/web/app/views/layout.pug index a73398df38..788f5590e4 100644 --- a/services/web/app/views/layout.pug +++ b/services/web/app/views/layout.pug @@ -18,12 +18,6 @@ html( -if (typeof(gaExperiments) != "undefined") |!{gaExperiments} - //- Icons - link(rel="icon", href="/" + settings.brandPrefix + "favicon.ico") - link(rel="icon", sizes="192x192", href="/" + settings.brandPrefix + "touch-icon-192x192.png") - link(rel="apple-touch-icon-precomposed", href="/" + settings.brandPrefix + "apple-touch-icon-precomposed.png") - link(rel="mask-icon", href="/" + settings.brandPrefix + "mask-favicon.svg", color=settings.brandPrefix === 'ol-' ? "#4f9c45" : "#a93529") - //- Stylesheet link(rel='stylesheet', href=buildCssPath(getCssThemeModifier(userSettings, brandVariation), { hashedPath: true }), id="main-stylesheet")