35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
{% load static %}
|
|
{% load i18n %}
|
|
{% load l10n %}
|
|
{% load mastodon %}
|
|
{% load thumb %}
|
|
{% get_current_language as LANGUAGE_CODE %}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ LANGUAGE_CODE }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ site_name }} - 400</title>
|
|
<meta name="robots" content="noindex">
|
|
{% include "common_libs.html" %}
|
|
</head>
|
|
<body>
|
|
{% include "_header.html" %}
|
|
<main class="container">
|
|
<article class="error">
|
|
<header>
|
|
<h3>🤷🏻 {{ exception }}</h3>
|
|
</header>
|
|
{% blocktrans %}You may have submitted invalid data, or the content may have been deleted by the author.{% endblocktrans %}
|
|
<br>
|
|
{% blocktrans %}If you believe this is our mistake, please contact us through the link at the bottom of the page.{% endblocktrans %}
|
|
<section>
|
|
{% if exception.additonal_detail %}
|
|
{% for e in exception.additonal_detail %}<p>{{ e }}</p>{% endfor %}
|
|
{% endif %}
|
|
</section>
|
|
</article>
|
|
</main>
|
|
{% include "_footer.html" %}
|
|
</body>
|
|
</html>
|