med/theme/templates/404.html

23 lines
679 B
HTML
Raw Normal View History

2019-08-15 15:15:08 +00:00
{% extends "base.html" %}
{% comment %}
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
{% load i18n static %}
{% block content_title %}
<h1>Oh crap! <small>404</small></h1>
{% endblock %}
{% block content %}
<p>
{% trans "This page has been lost in the deep dark." %}
</p>
<p>
2019-08-15 16:26:46 +00:00
{% blocktrans %}If you think this page sould exist, please
2019-08-15 15:15:08 +00:00
<a href="mailto:club-med@crans.org">alert the administrator</a>.
2019-08-15 16:26:46 +00:00
Else, you should go back and blame your link.{% endblocktrans %}
2019-08-15 15:15:08 +00:00
</p>
<img src="{% static "images/butterflies.svg" %}" class="poulpy" alt="erdnaxe's butterflies! Designed by Freepik">
{% endblock %}