6e14f2b266
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>
22 lines
756 B
HTML
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 %}
|