Merge pull request #479 from sharelatex/pr-fix-favicon-path

Fetch favicon and related assets from root.
This commit is contained in:
Shane Kilkelly 2017-04-13 13:09:29 +01:00 committed by GitHub
commit 8d6370026e

View file

@ -18,10 +18,10 @@ html(itemscope, itemtype='http://schema.org/Product')
-else
title= translate(title) + ' - ShareLaTeX, ' + translate("online_latex_editor")
link(rel="icon", href="favicon.ico")
link(rel="icon", sizes="192x192", href="touch-icon-192x192.png")
link(rel="apple-touch-icon-precomposed", href="favicon-152.png")
link(rel="mask-icon", href="mask-favicon.svg", color="#a93529")
link(rel="icon", href="/favicon.ico")
link(rel="icon", sizes="192x192", href="/touch-icon-192x192.png")
link(rel="apple-touch-icon-precomposed", href="/apple-touch-icon-precomposed.png")
link(rel="mask-icon", href="/mask-favicon.svg", color="#a93529")
link(rel='stylesheet', href=buildCssPath('/style.css'))