Files
3d.lehrstun.de/templates/404.html

10 lines
411 B
HTML
Raw Normal View History

2026-05-24 18:56:59 +02:00
{% extends "base.html" %}
{% block title %}Nicht gefunden — 3D-Druck-AG{% endblock %}
{% block content %}
<div class="card" style="text-align: center; max-width: 600px; margin: 3rem auto;">
<h1>Seite nicht gefunden</h1>
<p>Diese Adresse gibt es nicht. Vielleicht ein Tippfehler?</p>
<p style="margin-top: 1rem;"><a href="/" class="btn btn-primary">Zur Startseite</a></p>
</div>
{% endblock %}