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>
This commit is contained in:
@@ -10,6 +10,9 @@
|
||||
|
||||
{% 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 %}
|
||||
|
||||
|
||||
+9
-1
@@ -6,6 +6,12 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="{% block meta_description %}Faktenkompass – Überprüfbare Fakten und Quellen.{% endblock %}">
|
||||
<title>{% block title %}Faktenkompass{% endblock %}</title>
|
||||
<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' %}">
|
||||
<link rel="manifest" href="{% static 'site.webmanifest' %}">
|
||||
<link rel="mask-icon" href="{% static 'img/safari-pinned-tab.svg' %}" color="#0d9488">
|
||||
<meta name="theme-color" content="#0d9488">
|
||||
<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=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
||||
@@ -28,7 +34,9 @@
|
||||
<header class="fk-nav">
|
||||
<div class="container fk-nav-inner">
|
||||
<a class="fk-brand" href="{% url 'claims:home' %}">
|
||||
<span class="fk-brand-icon"><i class="bi bi-compass"></i></span>
|
||||
<span class="fk-brand-icon">
|
||||
<img src="{% static 'img/logo.svg' %}" width="28" height="28" alt="">
|
||||
</span>
|
||||
Faktenkompass
|
||||
</a>
|
||||
<nav class="fk-nav-links" aria-label="Hauptnavigation">
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</nav>
|
||||
|
||||
<article>
|
||||
<h1 class="fk-claim-title">{{ claim.title }}</h1>
|
||||
<h1 class="fk-claim-title">{{ claim.title|quoted }}</h1>
|
||||
|
||||
<div class="fk-meta-stack mb-3">
|
||||
{% status_badge claim %}
|
||||
@@ -132,7 +132,7 @@
|
||||
<div class="claim-card">
|
||||
<div class="card-body py-2">
|
||||
<div class="mb-1">{% status_badge related %}</div>
|
||||
<span class="claim-title small d-block">{{ related.title }}</span>
|
||||
<span class="claim-title small d-block">{{ related.title|quoted }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="mb-1">{% status_badge claim %}</div>
|
||||
<span class="claim-title d-block">{{ claim.title }}</span>
|
||||
<span class="claim-title d-block">{{ claim.title|quoted }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user