bookforge/templates/404.html
2026-01-30 19:16:51 +01:00

14 lines
390 B
HTML

{% extends "base.html" %}
{% block title %}
{{ t!("error.error_404.title_tag") }}
{% endblock %}
{% block main %}
<div class="mt-4 text-center">
<h1>{{ t!("error.error_404.title") }}</h1>
<h2 class="fst-italic">{{ t!("error.error_404.subtitle") }}</h2>
<a href="/" class="mt-3 btn btn-info">{{ t!("error.error_404.button") }}</a>
</div>
{% endblock %}