1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-27 17:00:52 +01:00
vichan/templates/themes/catalog/catalog.html

41 lines
1.2 KiB
HTML
Raw Normal View History

2013-07-18 17:34:04 +02:00
{% filter remove_whitespace %}
<!doctype html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<script type='text/javascript'>
active_page = "catalog";
</script>
{% include 'header.html' %}
2013-07-18 17:34:04 +02:00
<title>{{ settings.title }}</title>
</head>
<body class="theme-catalog">
2013-07-18 17:34:04 +02:00
{{ boardlist.top }}
<header>
<h1>{{ settings.title }} (<a href="{{link}}">/{{ board }}/</a>)</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>
<hr/>
2013-07-18 17:34:04 +02:00
<ul>
2013-07-18 17:40:21 +02: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 22:16:43 +02:00
<strong>{% trans %}1 reply{% plural post.reply_count %}{{ count }} replies{% endtrans %}</strong><br/>
2013-07-18 17:40:21 +02:00
{{ post.body }}
</span>
</div>
{% endfor %}
2013-07-18 17:34:04 +02: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 &copy; 2010-2013 Tinyboard Development Group</p>
<script type="text/javascript">
ready();
</script>
2013-07-18 17:34:04 +02:00
</body>
</html>
{% endfilter %}