14 lines
413 B
HTML
14 lines
413 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="{{ router.root_path() }}" class="mt-3 btn btn-info">{{ t!("error.error_404.button") }}</a>
|
|
</div>
|
|
{% endblock %}
|