18 lines
452 B
HTML
18 lines
452 B
HTML
{% load static %}
|
|
|
|
{% if theme.favicon %}
|
|
<link rel="icon" href="{{ theme.favicon.url }}">
|
|
{% if theme.env_visible_in_favicon %}
|
|
<script src="{% static 'admin_interface/favico/favico-0.3.10-patched.min.js' %}?nocache={{ version_md5_cache }}"></script>
|
|
<script>
|
|
var favicon = new Favico({
|
|
type: 'circle',
|
|
bgColor: '{{ theme.env_color }}',
|
|
textColor: '#FFFFFF',
|
|
animation: 'none'
|
|
});
|
|
favicon.badge(' ');
|
|
</script>
|
|
{% endif %}
|
|
{% endif %}
|