2012-02-07 17:08:13 -05:00
|
|
|
{% filter remove_whitespace %}
|
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2012-03-03 23:17:30 -05:00
|
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
2012-02-07 17:08:13 -05:00
|
|
|
<title>{{ settings.title }}</title>
|
|
|
|
<link rel="stylesheet" media="screen" href="{{ config.url_stylesheet }}"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ boardlist.top }}
|
2012-04-22 02:52:24 -04:00
|
|
|
<header>
|
|
|
|
<h1>{{ settings.title }}</h1>
|
|
|
|
<div class="subtitle">{{ settings.subtitle }}</div>
|
|
|
|
</header>
|
2012-02-07 17:08:13 -05:00
|
|
|
|
|
|
|
<div class="ban">
|
|
|
|
{% if news|count == 0 %}
|
|
|
|
<p style="text-align:center" class="unimportant">(No news to show.)</p>
|
|
|
|
{% else %}
|
|
|
|
{% for entry in news %}
|
|
|
|
<h2 id="{{ entry.id }}">
|
|
|
|
{% if entry.subject %}
|
|
|
|
{{ entry.subject }}
|
|
|
|
{% else %}
|
|
|
|
<em>no subject</em>
|
|
|
|
{% endif %}
|
|
|
|
<span class="unimportant"> — by {{ entry.name }} at {{ entry.time|date(config.post_date) }}</span>
|
|
|
|
</h2>
|
|
|
|
<p>{{ entry.body }}</p>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr/>
|
2014-04-19 20:27:54 -04:00
|
|
|
<footer>
|
|
|
|
<p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> +
|
|
|
|
<a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
|
|
|
|
<br><a href="http://tinyboard.org/">Tinyboard</a> Copyright © 2010-2014 Tinyboard Development Group
|
|
|
|
<br><a href="https://int.vichan.net/devel/">vichan</a> Copyright © 2012-2014 vichan-devel</p>
|
|
|
|
</footer>
|
2012-02-07 17:08:13 -05:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{% endfilter %}
|