Skip to content
Snippets Groups Projects
Commit 392227c4 authored by Nils Steinger's avatar Nils Steinger
Browse files

Switch favicon based on production/dev environment

parent 7860ec47
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
{% bootstrap_javascript jquery='slim' %} {% bootstrap_javascript jquery='slim' %}
{% fontawesome_5_static %} {% fontawesome_5_static %}
<link rel="icon" type="image/svg+xml" href="{% static 'common/images/logo.svg' %}"> <link rel="icon" type="image/svg+xml" href="{% if debug %}{% static 'common/images/logo-dev.svg' %}{% else %}{% static 'common/images/logo.svg' %}{% endif %}">
<link rel="stylesheet" href="{% static 'common/css/custom.css' %}"> <link rel="stylesheet" href="{% static 'common/css/custom.css' %}">
{% get_current_language as LANGUAGE_CODE %} {% get_current_language as LANGUAGE_CODE %}
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
{% bootstrap_javascript jquery='slim' %} {% bootstrap_javascript jquery='slim' %}
{% fontawesome_5_static %} {% fontawesome_5_static %}
<link rel="icon" type="image/svg+xml" href="{% static 'common/images/logo.svg' %}"> <link rel="icon" type="image/svg+xml" href="{% if debug %}{% static 'common/images/logo-dev.svg' %}{% else %}{% static 'common/images/logo.svg' %}{% endif %}">
<link rel="stylesheet" href="{% static 'common/css/custom.css' %}"> <link rel="stylesheet" href="{% static 'common/css/custom.css' %}">
<script type='text/javascript'> <script type='text/javascript'>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment