leftypol/templates/themes/rules/rules.html

39 lines
858 B
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" />
<title>{{ settings.title }}</title>
<link rel="shortcut icon" href="/favicon.png">
<link rel="stylesheet" media="screen" href="/stylesheets/style.css"/>
<link rel="stylesheet" media="screen" href="/stylesheets/dark.css"/>
2015-05-17 05:04:13 +00:00
<link rel="stylesheet" href="/stylesheets/font-awesome/css/font-awesome.min.css">
2014-09-28 19:43:24 +00:00
</head>
<body>
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>{{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>
2016-04-10 02:22:29 +00:00
<center>
<img alt="mascot" src="static/lain_is_cute_datass_small.png"/>
</center>
2014-09-28 19:43:24 +00:00
2016-08-20 13:31:49 +00:00
{ include '/templates/rules.html' }
2014-09-28 19:43:24 +00:00
</body>
</html>
{% endfilter %}
2015-05-17 05:04:13 +00:00
2015-09-12 20:26:01 +00:00