The version of vichan running on lainchan.org
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

52 Zeilen
2.2KB

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