56 lines
1.6 KiB
HTML
56 lines
1.6 KiB
HTML
{% filter remove_whitespace %}
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
|
<title>{{ settings.title }}</title>
|
|
<link rel="stylesheet" media="screen" href="{{ config.url_stylesheet }}"/>
|
|
<link rel="stylesheet" media="screen" href="{{ config.root }}{{ settings.css }}"/>
|
|
</head>
|
|
<body>
|
|
{{ boardlist.top }}
|
|
<h1>{{ settings.title }}</h1>
|
|
<div class="title">{{ settings.subtitle }}</div>
|
|
|
|
<div class="box-wrap">
|
|
<div class="box left">
|
|
<h2>Recent Images</h2>
|
|
<ul>
|
|
{% for post in recent_images %}
|
|
<li>
|
|
<a href="{{ post.link }}">
|
|
<img src="{{ post.src }}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px" alt="">
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="box right">
|
|
<h2>Latest Posts</h2>
|
|
<ul>
|
|
{% for post in recent_posts %}
|
|
<li>
|
|
<strong>{{ post.board_name }}</strong>:
|
|
<a href="{{ post.link }}">
|
|
{{ post.snippet }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="box right">
|
|
<h2>Stats</h2>
|
|
<ul>
|
|
<li>Total posts: {{ stats.total_posts }}</li>
|
|
<li>Unique posters: {{ stats.unique_posters }}</li>
|
|
<li>Active content: {{ stats.active_content|filesize }}</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<hr/>
|
|
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright © 2010-2012 Tinyboard Development Group</p>
|
|
</body>
|
|
</html>
|
|
{% endfilter %}
|