39 lines
858 B
HTML
Executable File
39 lines
858 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 '/templates/rules.html' }
|
|
|
|
</body>
|
|
</html>
|
|
{% endfilter %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|