{% 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 }}"/> </head> <body> {{ boardlist.top }} <header> <h1>{{ settings.title }}</h1> <div class="subtitle">{{ settings.subtitle }}</div> </header> <div class="ban"> {% if news|count == 0 %} <p style="text-align:center" class="unimportant">{% trans %}(No news to show.){% endtrans %}</p> {% else %} {% for entry in news %} <h2 id="{{ entry.id }}"> {% if entry.subject %} {{ entry.subject }} {% else %} <em>{% trans %}no subject{% endtrans %}</em> {% endif %} <span class="unimportant"> — {% trans %}by{% endtrans %} {{ entry.name }} {% trans %}at{% endtrans %} {{ entry.time|date(config.post_date) }}</span> </h2> <p>{{ entry.body }}</p> {% endfor %} {% endif %} </div> <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://engine.vichan.net/">vichan</a> Copyright © 2012-2015 vichan-devel</p> </footer> </body> </html> {% endfilter %}