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>
|
2023-05-20 11:01:18 -04:00
|
|
|
<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 }} - 404</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" %}
|
2023-05-20 11:01:18 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include "_header.html" %}
|
|
|
|
<main class="container">
|
|
|
|
<article class="error">
|
|
|
|
<header>
|
2024-07-17 01:08:06 -04:00
|
|
|
<h3>🤷🏻 {% trans "Something is missing" %}</h3>
|
2023-05-20 11:01:18 -04:00
|
|
|
</header>
|
2024-04-23 23:57:49 -04:00
|
|
|
{% blocktrans %}You may have visited an incorrect URL, or the content you are looking for has 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 %}
|
2025-02-09 12:51:49 -05:00
|
|
|
<br>
|
|
|
|
<a href="{% url 'common:home' %}" class="button">{% trans "Go to Home" %}</a>
|
2023-05-20 11:01:18 -04:00
|
|
|
</article>
|
|
|
|
</main>
|
2023-06-09 03:01:17 -04:00
|
|
|
{% include "_footer.html" %}
|
2023-05-20 11:01:18 -04:00
|
|
|
</body>
|
2023-02-04 00:45:17 -05:00
|
|
|
</html>
|