9 lines
732 B
HTML
9 lines
732 B
HTML
{% load staticfiles %}
|
|
<link rel="icon" type="image/png" href="{% static "images/favicon/favicon-16x16.png" %}" sizes="16x16">
|
|
<link rel="icon" type="image/png" href="{% static "images/favicon/favicon-32x32.png" %}" sizes="32x32">
|
|
<link rel="icon" type="image/png" href="{% static "images/favicon/android-chrome-192x192.png" %}" sizes="192x192">
|
|
<link rel="shortcut icon" type="image/png" href="{% static "images/favicon/apple-touch-icon.png" %}">
|
|
<link rel="apple-touch-icon" type="image/png" href="{% static "images/favicon/apple-touch-icon.png" %}">
|
|
<link rel="mask-icon" href="{% static "images/favicon/android-chrome-192x192.png" %}" color="#333333">
|
|
<link rel="manifest" href="{% static "images/favicon/site.webmanifest" %}">
|