You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
525 B
HTML
17 lines
525 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block title %}<title>{{config.extra.name}} | 404</title>{% endblock title %}
|
|
|
|
{% block content %}
|
|
<main class="page w3-container w3-content w3-padding-64">
|
|
<h1>404 - page non trouvée</h1>
|
|
<span id="url"></span>
|
|
<p>L'URL ci-dessus ne mène à aucune page connue. Si vous pensez que c'est une erreur, veuillez nous l'indiquer par mail.</p>
|
|
</main>
|
|
|
|
<script>
|
|
var span_url = document.getElementById("url");
|
|
span_url.innerHTML = document.location.href;
|
|
</script>
|
|
{% endblock content %}
|