leftypol/templates/themes/categories/news.html

38 lines
1.2 KiB
HTML
Raw Normal View History

2012-02-14 10:26:08 +00:00
{% filter remove_whitespace %}
<!doctype html>
<html>
<head>
2012-03-04 04:17:30 +00:00
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
2012-02-14 10:26:08 +00:00
<title>{{ settings.title }}</title>
<link rel="stylesheet" media="screen" href="{{ config.url_stylesheet }}"/>
</head>
<body>
{{ boardlist.top }}
2012-04-22 06:52:24 +00:00
<header>
<h1>{{ settings.title }}</h1>
<div class="subtitle">{{ settings.subtitle }}</div>
</header>
2012-02-14 10:26:08 +00:00
<div class="ban">
{% if news|count == 0 %}
2013-07-27 05:43:09 +00:00
<p style="text-align:center" class="unimportant">{% trans %}(No news to show.){% endtrans %}</p>
2012-02-14 10:26:08 +00:00
{% else %}
{% for entry in news %}
<h2 id="{{ entry.id }}">
{% if entry.subject %}
{{ entry.subject }}
{% else %}
2013-07-27 05:43:09 +00:00
<em>{% trans %}no subject{% endtrans %}</em>
2012-02-14 10:26:08 +00:00
{% endif %}
2013-07-27 05:43:09 +00:00
<span class="unimportant"> &mdash; {% trans %}by{% endtrans %} {{ entry.name }} {% trans %}at{% endtrans %} {{ entry.time|date(config.post_date) }}</span>
2012-02-14 10:26:08 +00:00
</h2>
<p>{{ entry.body }}</p>
{% endfor %}
{% endif %}
</div>
<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-2012 Tinyboard Development Group</p>
</body>
</html>
{% endfilter %}