56 lines
2.6 KiB
Twig
56 lines
2.6 KiB
Twig
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}Fehler {{ status_code|default(500) }}{% endblock %}</title>
|
|
<link href="/assets/styles/bootstrap.min.css" rel="stylesheet"/>
|
|
<link href="/assets/styles/base.css" rel="stylesheet"/>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css" rel="stylesheet">
|
|
<link rel="shortcut icon" href="https://www.mitho-media.de/media/fc/16/42/1667224106/favicon.ico?ts=1767609928">
|
|
</head>
|
|
<body class="bg-dark text-light min-vh-100 d-flex align-items-center">
|
|
<div class="container py-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8 col-xl-7">
|
|
<div class="card bg-black border-secondary text-light shadow-lg">
|
|
<div class="card-body p-4 p-md-5">
|
|
<div class="d-flex align-items-center gap-3 mb-4">
|
|
<div class="rounded-circle border border-info d-flex align-items-center justify-content-center"
|
|
style="width: 56px; height: 56px;">
|
|
{% block icon %}<i class="bi bi-exclamation-triangle fs-3 text-info"></i>{% endblock %}
|
|
</div>
|
|
<div>
|
|
<div class="text-info small text-uppercase fw-semibold">
|
|
Fehler {{ status_code|default(500) }}
|
|
</div>
|
|
<h1 class="h3 mb-0">{% block heading %}Ein Fehler ist aufgetreten{% endblock %}</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="lead mb-4">{% block message %}Die Anfrage konnte nicht verarbeitet werden.{% endblock %}</p>
|
|
|
|
{% block details %}{% endblock %}
|
|
|
|
<div class="d-flex flex-wrap gap-2 mt-4">
|
|
{% block actions %}
|
|
<a class="btn btn-info" href="{{ path('chat_index') }}">
|
|
<i class="bi bi-chat-dots"></i> Zum Chat
|
|
</a>
|
|
<a class="btn btn-outline-light" href="{{ path('admin_dashboard') }}">
|
|
<i class="bi bi-speedometer2"></i> Zum Adminbereich
|
|
</a>
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="text-center text-secondary small mt-3">
|
|
RAG-System · powered by mitho®
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|