Add favicon assets and update HTML references for improved branding

This commit is contained in:
Edgar P. Burkhart 2025-06-16 23:59:02 +02:00
parent a462fabde4
commit b20eee8cfb
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
9 changed files with 55 additions and 1 deletions

View file

@ -11,7 +11,7 @@
Musik
{% endblock title %}
</title>
<link rel="icon" href="{% static "logo.svg" %}">
{% include "favicon.html" %}
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap"

View file

@ -0,0 +1,8 @@
{% load static %}
<meta name="theme-color" content="#aa40bf">
<link rel="icon" type="image/png" href="{% static "favicon/favicon-96x96.png" %}" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="{% static "favicon/favicon.svg" %}" />
<link rel="shortcut icon" href="{% static "favicon/favicon.ico" %}" />
<link rel="apple-touch-icon" sizes="180x180" href="{% static "favicon/apple-touch-icon.png" %}" />
<meta name="apple-mobile-web-app-title" content="Musik" />
<link rel="manifest" href="{% static "favicon/site.webmanifest" %}" />