lib.itmens/common/templates/500.html

30 lines
919 B
HTML
Raw Normal View History

2023-02-04 00:45:17 -05:00
{% load static %}
{% load i18n %}
{% load l10n %}
{% load mastodon %}
{% load thumb %}
<!DOCTYPE html>
2024-04-23 23:57:49 -04:00
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-04-23 23:57:49 -04:00
<title>{{ site_name }} - 500</title>
2024-01-12 18:38:09 -05:00
<meta name="robots" content="noindex">
2024-01-07 17:24:34 -05:00
{% include "common_libs.html" %}
</head>
<body>
{% include "_header.html" %}
<main class="container">
<article class="error">
<header>
2024-04-23 23:57:49 -04:00
<h3>🤦🏻 My Bad</h3>
</header>
2024-04-23 23:57:49 -04:00
{% blocktrans %}An internal error occurred. If this error occurs repeatedly, it will be recorded and handled by a human.{% endblocktrans %}
<br>
{% blocktrans %}If you have an urgent situation or any questions, please contact us through the link at the bottom of the page.{% endblocktrans %}
</article>
</main>
2023-06-09 03:01:17 -04:00
{% include "_footer.html" %}
</body>
2023-02-04 00:45:17 -05:00
</html>