Files
chanbans/chanbans/templates/base.html
2023-08-02 20:33:17 -07:00

45 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
{% endblock head %}
<title>
4chan bans archive -
{% block title %}
{% endblock title %} -
{{ config.HTTP_DOMAIN }}
</title>
<link rel="stylesheet" href="{{static_url("style00.css")}}">
{% block style %}
{% endblock style %}
</head>
<body>
<nav>
[ <a href="{{route_url("/")}}">Home</a> / <a href="{{route_url("/news")}}">News</a> / <a href="{{route_url("/faq")}}">FAQ</a> ]
</nav>
{% block body %}
<header>
{% block header %}
<div id="header">
<h1>4chan bans archive</h1>
<p>
All data is retrieved from <a href="https://www.4chan.org/bans">https://www.4chan.org/bans</a>.
</p>
<p>
This is not a comprehensive list of all bans - only what the moderation team makes public.
</p>
<p>
<strong>This website is not affiliated with 4chan in any way.</strong>
</p>
</div>
{% endblock header %}
</header>
<main>
{% block main %}
{% endblock main %}
</main>
{% endblock body %}
</body>
</html>