Files
Pirmin Hinderling (fedora) 6e14f2b266 Add compass logo with favicon set and quote claim titles in the UI.
Introduces SVG and PNG icon assets with manifest links, and wraps public claim titles in German quotation marks.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-07 20:22:28 +02:00

22 lines
756 B
HTML

{% extends "admin/base.html" %}
{% load static %}
{% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} | Faktenkompass Redaktion{% endblock %}
{% block extrastyle %}
{{ block.super }}
<link rel="stylesheet" href="{% static 'css/admin_custom.css' %}">
{% endblock %}
{% block extrahead %}
{{ block.super }}
<link rel="icon" href="{% static 'img/favicon.ico' %}" sizes="any">
<link rel="icon" href="{% static 'img/favicon.svg' %}" type="image/svg+xml">
<link rel="apple-touch-icon" href="{% static 'img/apple-touch-icon.png' %}">
<script src="{% static 'js/admin_custom.js' %}" defer></script>
{% endblock %}
{% block branding %}
<div id="site-name"><a href="{% url 'admin:index' %}">Faktenkompass Redaktion</a></div>
{% endblock %}