diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-12-16 11:41:10 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-12-16 11:41:10 +0200 |
commit | c1733fc89c4c73a1ab3f4054d0a9ebff7741a804 (patch) | |
tree | 3eb45b02dd5d74a864ab05da7c1cd159dba32262 | |
parent | 388c1bec451934e7ea499e6189a00b0601ac1e59 (diff) | |
download | wekan-c1733fc89c4c73a1ab3f4054d0a9ebff7741a804.tar.gz wekan-c1733fc89c4c73a1ab3f4054d0a9ebff7741a804.tar.bz2 wekan-c1733fc89c4c73a1ab3f4054d0a9ebff7741a804.zip |
- Fix favicon paths for non-suburl cases.
Thanks to xet7 !
Related #1692
-rw-r--r-- | client/components/main/layouts.jade | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/components/main/layouts.jade b/client/components/main/layouts.jade index e434eaba..d0c27da5 100644 --- a/client/components/main/layouts.jade +++ b/client/components/main/layouts.jade @@ -7,10 +7,10 @@ head where the application is deployed with a path prefix, but it seems to be difficult to do that cleanly with Blaze -- at least without adding extra packages. - link(rel="shortcut icon" href="/wekan-favicon.png") - link(rel="apple-touch-icon" href="/wekan-favicon.png") - link(rel="mask-icon" href="/wekan-150.svg") - link(rel="manifest" href="/wekan-manifest.json") + link(rel="shortcut icon" href="/public/wekan-favicon.png") + link(rel="apple-touch-icon" href="/public/wekan-favicon.png") + link(rel="mask-icon" href="/public/wekan-150.svg") + link(rel="manifest" href="/public/wekan-manifest.json") template(name="userFormsLayout") section.auth-layout |