The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
2.0KB

  1. {% filter remove_whitespace %}
  2. <!doctype html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <title>{{ settings.title }}</title>
  7. {% if config.meta_keywords %}<meta name="keywords" content="{{ config.meta_keywords }}">{% endif %}
  8. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
  9. {% if config.url_favicon %}<link rel="shortcut icon" href="{{ config.url_favicon }}">{% endif %}
  10. <link rel="stylesheet" media="screen" href="{{ config.url_stylesheet }}">
  11. {% if config.default_stylesheet.1 != '' %}<link rel="stylesheet" type="text/css" id="stylesheet" href="{{ config.uri_stylesheets }}{{ config.default_stylesheet.1 }}">{% endif %}
  12. {% if config.font_awesome %}<link rel="stylesheet" href="{{ config.root }}{{ config.font_awesome_css }}">{% endif %}
  13. </head>
  14. <body>
  15. {{ boardlist.top }}
  16. <header>
  17. <h1>{{ settings.title }}</h1>
  18. <div class="subtitle">{{ settings.subtitle }}</div>
  19. </header>
  20. <img src="static/lain_is_cute_datass_small.png" alt="mascot"/>
  21. <div class="ban">
  22. {% if news|count == 0 %}
  23. <p style="text-align:center" class="unimportant">(No news to show.)</p>
  24. {% else %}
  25. {% for entry in news %}
  26. <h2 id="{{ entry.id }}">
  27. {% if entry.subject %}
  28. {{ entry.subject }}
  29. {% else %}
  30. <em>no subject</em>
  31. {% endif %}
  32. <span class="unimportant"> &mdash; by {{ entry.name }} at {{ entry.time|date(config.post_date, config.timezone) }}</span>
  33. </h2>
  34. <p>{{ entry.body }}</p>
  35. {% endfor %}
  36. {% endif %}
  37. </div>
  38. <hr/>
  39. <footer>
  40. <p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> +
  41. <a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
  42. <br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group
  43. <br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
  44. </footer>
  45. </body>
  46. </html>
  47. {% endfilter %}