leftypol/templates/themes/about/about.html
2024-05-21 16:43:26 +02:00

32 lines
1.4 KiB
HTML

{% filter remove_whitespace %}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
{% if config.meta_keywords %}<meta name="keywords" content="{{ config.meta_keywords }}">{% endif %}
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<title>{{ theme_config.title }}</title>
{% include 'header.html' %}
</head>
<body class="8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %}" data-stylesheet="{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}">
<div id="top-hud" class="bar top">
{{ board_list.top }}
</div>
<header>
<h1 data-text="{{ theme_config.title }}"> {{ theme_config.title }}</h1>
</header>
<img class="center" img alt="logo" src="{{ config.logo }}" width=15%/>
<div class="center ban">{{ theme_config.description }}</div>
<hr/>
<footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="https://github.com/savetheinternet/Tinyboard">Tinyboard</a> +
<a href='https://github.com/vichan-devel/vichan'>vichan</a> +
<br><a href="https://github.com/savetheinternet/Tinyboard">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group
<br><a href="https://github.com/vichan-devel/vichan">vichan</a> Copyright &copy; 2012-2016 vichan-devel
</footer>
<div id="bottom-hud" class="bar bottom">
<div class="pages"></div>
</div>
</body>
</html>
{% endfilter %}