leftypol/templates/themes/rules/rules.html

36 lines
1.1 KiB
HTML
Raw Normal View History

2014-09-28 19:43:24 +00:00
{% filter remove_whitespace %}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script type='text/javascript'>
var active_page = "rules";
</script>
2014-09-28 19:43:24 +00:00
<title>{{ settings.title }}</title>
{% include 'header.html' %}
2014-09-28 19:43:24 +00:00
</head>
<body class="8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %} active-{% if not no_post_form %}index{% else %}ukko{% endif %}" data-stylesheet="{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}">
2014-12-17 05:14:26 +00:00
<div class="bar top">
2015-05-17 05:04:13 +00:00
{{ boardlist.top }}
2014-11-13 00:32:01 +00:00
</div>
2014-09-28 19:43:24 +00:00
<header>
<h1 class="glitch" data-text="{{ settings.title }}"> {{ settings.title }}</h1>
2014-09-28 19:43:24 +00:00
<div class="subtitle">{{ settings.subtitle }}</div>
</header>
2016-04-10 02:22:29 +00:00
<center>
2021-11-12 04:37:30 +00:00
<img alt="logo" src="{{ config.logo }}" width=15%/>
2016-04-10 02:22:29 +00:00
</center>
2014-09-28 19:43:24 +00:00
{% include 'rules.html' %}
<div class="pages"></div>
<script type="text/javascript">{% raw %}
ready();
{% endraw %}</script>
2014-09-28 19:43:24 +00:00
</body>
</html>
{% endfilter %}
2021-05-13 04:02:39 +00:00