Legere/templates/404.html
√(noham)² ebe21a776f changes
2023-04-07 23:15:56 +02:00

24 lines
526 B
HTML

{% extends 'template.html' %}
{% block title %}
404
{% endblock %}
{% block head %}
<link href="{{ url_for('static', filename='css/erreur.css') }}" rel="stylesheet" />
{% endblock %}
{% block content %}
<div id="content2">
<h1>Erreur 404</h1>
<h2>Cette page n'existe pas</h2>
<div class="contentchild">
<div class="clique">
<a href="/main" class="link">
<img src="../static/img/main/plus.png" alt="plus">
<h2>Retourner à l'accueil !</h2>
</a>
</div>
</div>
</div>
{% endblock %}