Use url_for for all static paths

This commit is contained in:
richard-dds
2019-11-12 12:53:17 -05:00
committed by dandds
parent 436cbcffe4
commit 7ace430dee
7 changed files with 8 additions and 6 deletions

View File

@@ -7,7 +7,7 @@
{% assets "css" %}
<link rel="stylesheet" href="{{ ASSET_URL }}" type="text/css">
{% endassets %}
<link rel="icon" type="image/x-icon" href="/static/img/favicon.ico">
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='img/favicon.ico') }} " />
</head>
<body class="{% if g.modalOpen %} modalOpen{% endif %}">