Skip to content
Snippets Groups Projects
Commit ceb47183 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch 'fix-favicon' into 'master'

Fix favicon. Closes #1.

Closes #1

See merge request Teckids/BiscuIT/BiscuIT-ng!44
parents eb2691d8 e90ba2f8
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