lainchan/templates/themes/rules/rules.html

39 lines
849 B
HTML
Raw Normal View History

2014-09-28 15:43:24 -04: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 01:04:13 -04:00
<link rel="stylesheet" href="/stylesheets/font-awesome/css/font-awesome.min.css">
2014-09-28 15:43:24 -04:00
</head>
<body>
2014-12-17 00:14:26 -05:00
<div class="bar top">
2015-05-17 01:04:13 -04:00
{{ boardlist.top }}
2014-11-12 19:32:01 -05:00
</div>
2014-09-28 15:43:24 -04:00
<header>
<h1>{{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>
2016-04-09 22:22:29 -04:00
<center>
<img alt="mascot" src="static/lain_is_cute_datass_small.png"/>
</center>
2014-09-28 15:43:24 -04:00
{% include 'rules.html' %}
2016-08-20 09:31:49 -04:00
2014-09-28 15:43:24 -04:00
</body>
</html>
{% endfilter %}
2015-05-17 01:04:13 -04:00
2015-09-12 16:26:01 -04:00