17 lines
424 B
HTML
17 lines
424 B
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">
|
|
<h1 class="page-title">Fehler 404 - Seite nicht gefunden</h1>
|
|
|
|
<section class="flex justify-center items-center">
|
|
<img src="{% static 'img/404.svg' %}" alt="" class="h-64 text-proprietary">
|
|
</section>
|
|
</main>
|
|
{% endblock %}
|