The version of vichan running on lainchan.org
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

43 行
1.4KB

  1. {% filter remove_whitespace %}
  2. <!doctype html>
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  6. <title>{{ settings.title }}</title>
  7. <link rel="stylesheet" media="screen" href="{{ config.url_stylesheet }}"/>
  8. </head>
  9. <body>
  10. {{ boardlist.top }}
  11. <header>
  12. <h1>{{ settings.title }}</h1>
  13. <div class="subtitle">{{ settings.subtitle }}</div>
  14. </header>
  15. <div class="ban">
  16. {% if news|count == 0 %}
  17. <p style="text-align:center" class="unimportant">{% trans %}(No news to show.){% endtrans %}</p>
  18. {% else %}
  19. {% for entry in news %}
  20. <h2 id="{{ entry.id }}">
  21. {% if entry.subject %}
  22. {{ entry.subject }}
  23. {% else %}
  24. <em>{% trans %}no subject{% endtrans %}</em>
  25. {% endif %}
  26. <span class="unimportant"> &mdash; {% trans %}by{% endtrans %} {{ entry.name }} {% trans %}at{% endtrans %} {{ entry.time|date(config.post_date) }}</span>
  27. </h2>
  28. <p>{{ entry.body }}</p>
  29. {% endfor %}
  30. {% endif %}
  31. </div>
  32. <footer>
  33. <p class="unimportant" style="margin-top:20px;text-align:center;">- Tinyboard +
  34. <a href="https://engine.vichan.net/">vichan</a> {{ config.version }} -
  35. <br>Tinyboard Copyright &copy; 2010-2014 Tinyboard Development Group
  36. <br><a href="https://engine.vichan.net/">vichan</a> Copyright &copy; 2012-2016 vichan-devel</p>
  37. </footer>
  38. </body>
  39. </html>
  40. {% endfilter %}