41 lines
1.8 KiB
HTML
41 lines
1.8 KiB
HTML
{% load static %}
|
||
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" rel="stylesheet">
|
||
<link href="{% static 'css/custom.css' %}" rel="stylesheet">
|
||
</head>
|
||
<body class="d-flex flex-column min-vh-100">
|
||
<nav class="navbar navbar-dark bg-primary">
|
||
<div class="container">
|
||
<a class="navbar-brand" href="{% url 'claims:home' %}">
|
||
<i class="bi bi-compass me-1"></i>Faktenkompass
|
||
</a>
|
||
<div class="d-flex gap-2">
|
||
<a class="btn btn-sm btn-outline-light{% if request.resolver_match.url_name == 'home' %} active{% endif %}" href="{% url 'claims:home' %}">Themen</a>
|
||
<a class="btn btn-sm btn-outline-light{% if request.resolver_match.url_name == 'search' %} active{% endif %}" href="{% url 'claims:search' %}">Suche</a>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
|
||
<main class="flex-grow-1 py-3">
|
||
<div class="container">
|
||
{% block content %}{% endblock %}
|
||
</div>
|
||
</main>
|
||
|
||
<footer class="border-top py-2 mt-auto">
|
||
<div class="container">
|
||
<p class="text-muted text-center mb-0 small">© {% now "Y" %} Faktenkompass</p>
|
||
</div>
|
||
</footer>
|
||
|
||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
||
</body>
|
||
</html>
|