22 lines
1.0 KiB
HTML
22 lines
1.0 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% load static %}
|
|
|
|
{% block title %}Fehler 404{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- Main Content -->
|
|
<main class="container mx-auto w-full px-4 my-8 flex-1">
|
|
<section class="w-full text-center">
|
|
<small class="text-lg font-semibold text-proprietary dark:text-proprietary-lighter">404</small>
|
|
<h1 class="mt-4 text-3xl font-bold tracking-tight text-gray-900 dark:text-gray-100 sm:text-4xl xl:text-5xl">Seite nicht gefunden</h1>
|
|
<img src="{% static 'img/404.svg' %}" alt="" class="mt-16 mx-auto h-64 text-proprietary">
|
|
<p class="mt-6 text-base leading-7 text-proprietary dark:text-sky-600">Die angeforderte Seite konnte leider nicht gefunden werden.</p>
|
|
<div class="mt-10 flex items-center justify-center gap-x-6">
|
|
<a href="{% url 'posts:index' %}" type="submit" class="block btn btn-primary">News</a>
|
|
<a href="{% url 'members:index' %}" class="btn btn-tertiary">Über uns <span aria-hidden="true">→</span></a>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
{% endblock %}
|