Skip to content
Snippets Groups Projects
Verified Commit e90ba2f8 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix favicon. Closes #1.

parent a85d018d
No related branches found
No related tags found
1 merge request!44Fix favicon. Closes #1.
{# -*- engine:django -*- #}
{% load static thumbnail %}
{% load static %}
{% get_static_prefix as static_prefix %}
{% with path="{{ static_prefix }}biscuit-logo.png" %}
<link rel="shortcut icon" type="image/png" href="{% thumbnail path 196x196 crop %}" />
<link rel="shortcut icon" sizes="196x196" href="{% thumbnail path 196x196 crop %}" />
<link rel="apple-touch-icon" href="{% thumbnail path 196x196 crop %}" />
{% endwith %}
<link rel="shortcut icon" type="image/png" href="{% static 'img/biscuit-logo.png' %}" />
<link rel="shortcut icon" sizes="196x196" href="{% static 'img/biscuit-logo.png' %}" />
<link rel="apple-touch-icon" href="{% static 'img/biscuit-logo.png' %}" />
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment