salvi/templates/notfound.html

10 lines
251 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Not found - {{ app_name }}{% endblock %}
{% block content %}
2022-11-12 22:33:50 +01:00
<h1>{{ T('not-found') }}</h1>
2022-11-12 22:33:50 +01:00
<p>{{ T('not-found-text-1')}} <strong>{{ request.path }}</strong> {{ T('not-found-text-2' )}}.</p>
{% endblock %}