Files

10 lines
351 B
HTML
Raw Permalink Normal View History

2026-07-01 21:10:06 +02:00
{% extends "base.html" %}
{% block title %}404 — Ikke fundet{% endblock %}
{% block content %}
<div style="text-align:center;padding:60px 0;">
<h1 style="font-size:3rem;">404</h1>
<p style="color:var(--text-muted);margin:16px 0;">Siden blev ikke fundet.</p>
<a href="/" class="btn btn-primary">Gå til forsiden</a>
</div>
{% endblock %}