10 lines
411 B
HTML
10 lines
411 B
HTML
|
|
{% 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 %}
|