lib.itmens/common/templates/403.html

30 lines
926 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 }} - 403</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>🙅🏻 {{ exception|default:"" }}</h3>
</header>
2024-04-23 23:57:49 -04:00
{% blocktrans %}Author may require you to log in before accessing this content, or you do not have permission to view it.{% endblocktrans %}
<br>
{% blocktrans %}If you believe this is our mistake, 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>