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

24 lines
508 B
HTML

{% extends 'template.html' %}
{% block title %}
405
{% endblock %}
{% block head %}
<link href="{{ url_for('static', filename='css/erreur.css') }}" rel="stylesheet" />
{% endblock %}
{% block content %}
<div id="content2">
<h1>Erreur</h1>
<h2>Not found</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 %}