leftypol/templates/themes/rules/rules.html
Michael Walker 0f7039b600 This should actually just include rules.html.
Twig looks for templates from the /templates directory already.
2016-08-21 20:21:52 +01:00

39 lines
849 B
HTML
Executable File

{% 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"/>
<link rel="stylesheet" href="/stylesheets/font-awesome/css/font-awesome.min.css">
</head>
<body>
<div class="bar top">
{{ boardlist.top }}
</div>
<header>
<h1>{{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>
<center>
<img alt="mascot" src="static/lain_is_cute_datass_small.png"/>
</center>
{% include 'rules.html' %}
</body>
</html>
{% endfilter %}