fix icon path

This commit is contained in:
Your Name 2024-04-07 16:50:26 -04:00 committed by Henri Dickson
parent 9e334f788b
commit 254d5b25a0
3 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ env = environ.FileAwareEnv(
NEODB_SITE_NAME=(str),
NEODB_SITE_DOMAIN=(str),
NEODB_SITE_LOGO=(str, "/s/img/logo.svg"),
NEODB_SITE_ICON=(str, "/s/img/logo.svg"),
NEODB_SITE_ICON=(str, "/s/img/icon.png"),
NEODB_USER_ICON=(str, "/s/img/avatar.svg"),
NEODB_SITE_INTRO=(str, ""),
NEODB_SITE_HEAD=(str, ""),

View file

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View file

@ -48,7 +48,7 @@
})();
</script>
<link rel="icon" href="{{ site_icon }}">
<link rel="apple-touch-icon" href="{{ site_logo }}">
<link rel="apple-touch-icon" href="{{ site_icon }}">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="{{ site_name }}">
{% if request.META.HTTP_HOST == site_domain %}