2013-07-18 11:34:04 -04:00
|
|
|
{% filter remove_whitespace %}
|
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
2013-12-25 11:46:13 -05:00
|
|
|
<script type='text/javascript'>
|
|
|
|
active_page = "catalog";
|
|
|
|
</script>
|
|
|
|
{% include 'header.html' %}
|
2013-07-18 11:34:04 -04:00
|
|
|
<title>{{ settings.title }}</title>
|
|
|
|
</head>
|
2013-12-25 11:46:13 -05:00
|
|
|
<body class="theme-catalog">
|
2013-07-18 11:34:04 -04:00
|
|
|
{{ boardlist.top }}
|
|
|
|
<header>
|
|
|
|
<h1>{{ settings.title }} (<a href="{{link}}">/{{ board }}/</a>)</h1>
|
|
|
|
<div class="subtitle">{{ settings.subtitle }}</div>
|
|
|
|
</header>
|
2013-12-25 11:46:13 -05:00
|
|
|
<hr/>
|
2013-07-18 11:34:04 -04:00
|
|
|
<ul>
|
2013-07-18 11:40:21 -04:00
|
|
|
{% for post in recent_posts %}
|
|
|
|
<div class="thread">
|
|
|
|
<a href="{{post.link}}">
|
|
|
|
<img src="{{post.file}}" class="{{post.board}}" title="{{post.bump|date('%b %d %H:%M')}}">
|
|
|
|
</a>
|
|
|
|
<span class="replies">
|
2013-07-18 16:16:43 -04:00
|
|
|
<strong>{% trans %}1 reply{% plural post.reply_count %}{{ count }} replies{% endtrans %}</strong><br/>
|
2013-07-18 11:40:21 -04:00
|
|
|
{{ post.body }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2013-07-18 11:34:04 -04:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<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-2013 Tinyboard Development Group</p>
|
2013-12-25 11:46:13 -05:00
|
|
|
<script type="text/javascript">
|
|
|
|
ready();
|
|
|
|
</script>
|
2013-07-18 11:34:04 -04:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{% endfilter %}
|