Closed joesolly closed 11 months ago
This issue should be fixed in v2.0.1
Which version are you using?
This issue should be fixed in
v2.0.1
Which version are you using?
I'm still on 2.0.0, thanks for the heads up
I tested on 2.0.1 and it's working
Describe the bug There is no favicon defined in the
<head>
block so when flower is served with aurl_prefix
, the favicon does not display properly. Also, because the navbar is a TornadoTemplate
rather than an{% import
, it has its own namespacing and does not inherit thestatic_url
behavior, which leaves the icon pointing to/favicon.ico
To Reproduce Steps to reproduce the behavior (favicon):
<head>
block and see no explicit mention offavicon.ico
This becomes an issue when flower is served from a url_prefix as browsers will default to/favicon.ico
Steps to reproduce the behavior (navbar):
url_prefix
/$urlprefix/favicon.ico
but instead to/favicon.ico
Expected behavior
favicon.ico
is explicitly located in the<head>
block and the navbar image works when usingurl_prefix
Screenshots