bookforge/templates/404.html

13 lines
413 B
HTML
Raw Permalink Normal View History

2026-01-30 10:33:25 +01:00
{% extends "base.html" %}
2026-01-30 19:16:51 +01:00
{% block title %}
{{ t!("error.error_404.title_tag") }}
{% endblock %}
2026-01-30 10:33:25 +01:00
{% block main %}
<div class="mt-4 text-center">
2026-01-30 18:23:54 +01:00
<h1>{{ t!("error.error_404.title") }}</h1>
<h2 class="fst-italic">{{ t!("error.error_404.subtitle") }}</h2>
2026-01-31 18:21:28 +01:00
<a href="{{ router.root_path() }}" class="mt-3 btn btn-info">{{ t!("error.error_404.button") }}</a>
2026-01-30 10:33:25 +01:00
</div>
{% endblock %}