PCv5/app/templates/errors/404.html

10 lines
225 B
HTML
Raw Normal View History

{% extends "base/base.html" %}
{% block content %}
<section>
<h1>404 - Page non trouvée</h1>
<img src="{{url_for('static', filename = 'images/404.webp')}}" style="display:block;margin:auto"; />
</section>
{% endblock %}