9 lines
270 B
HTML
9 lines
270 B
HTML
|
{% extends "terminimal/templates/404.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="post">
|
||
|
<h1 class="post-title">{% block heading %}Perdu ?{% endblock heading %}</h1>
|
||
|
<p>{% block message %}Cette page n'existe pas.{% endblock message %}</p>
|
||
|
</div>
|
||
|
{% endblock content %}
|