lib.itmens/common/templates/403.html
2024-05-09 11:22:29 -04:00

29 lines
926 B
HTML

{% load static %}
{% load i18n %}
{% load l10n %}
{% load mastodon %}
{% load thumb %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ site_name }} - 403</title>
<meta name="robots" content="noindex">
{% include "common_libs.html" %}
</head>
<body>
{% include "_header.html" %}
<main class="container">
<article class="error">
<header>
<h3>🙅🏻 {{ exception|default:"" }}</h3>
</header>
{% 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>
{% include "_footer.html" %}
</body>
</html>