blob: 1e924de5d7453e19bad307c336768ba5363d62c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "_base.html" %}
{% block page %}not-found{% endblock page%}
{% block lang %}{{ config.default_language }}{% endblock lang %}
{% block title %}404{% endblock title %}
{% block content %}
<div class="wrapper">
<p class="error">
{{ config.extra.not_found_error_text }}
</p>
<a class="instant" href="{{ get_url(path='/') }}">{{ config.extra.not_found_recover_text }}</a>
</div>
{% endblock %}
|