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.5KB

  1. <!doctype html>
  2. <html>
  3. <head>
  4. {% block head %}
  5. {% include 'header.html' %}
  6. <title>{{ board.url }} - {{ board.name }}</title>
  7. {% endblock %}
  8. </head>
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
  10. <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 %}">
  11. {{ boardlist.top }}
  12. {% if pm %}<div class="top_notice">You have <a href="?/PM/{{ pm.id }}">an unread PM</a>{% if pm.waiting > 0 %}, plus {{ pm.waiting }} more waiting{% endif %}.</div><hr />{% endif %}
  13. {% if config.url_banner %}<img class="banner" src="{{ config.url_banner }}" {% if config.banner_width or config.banner_height %}style="{% if config.banner_width %}width:{{ config.banner_width }}px{% endif %};{% if config.banner_width %}height:{{ config.banner_height }}px{% endif %}" {% endif %}alt="" />{% endif %}
  14. <header>
  15. <h1>{{ board.url }} - {{ board.name }}</h1>
  16. <div class="subtitle">
  17. {% if board.title %}
  18. {{ board.title|e }}
  19. {% endif %}
  20. {% if mod %}<p><a href="?/">{% trans %}Return to dashboard{% endtrans %}</a></p>{% endif %}
  21. </div>
  22. </header>
  23. {% include 'attention_bar.html' %}
  24. {% include 'post_form.html' %}
  25. {% if config.global_message %}<hr /><div class="blotter">{{ config.global_message }}</div>{% endif %}
  26. <hr />
  27. <form name="postcontrols" action="{{ config.post_url }}" method="post">
  28. <input type="hidden" name="board" value="{{ board.uri }}" />
  29. {% if mod %}<input type="hidden" name="mod" value="1" />{% endif %}
  30. {{ body }}
  31. {% include 'report_delete.html' %}
  32. </form>
  33. <div class="pages">{{ btn.prev }} {% for page in pages %}
  34. [<a {% if page.selected %}class="selected"{% endif %}{% if not page.selected %}href="{{ page.link }}"{% endif %}>{{ page.num }}</a>]{% if loop.last %} {% endif %}
  35. {% endfor %} {{ btn.next }}</div>
  36. {{ boardlist.bottom }}
  37. <footer>
  38. <p class="unimportant" style="margin-top:20px;text-align:center;">- Tinyboard +
  39. <a href="https://engine.vichan.net/">vichan</a> {{ config.version }} -
  40. <br>Tinyboard Copyright &copy; 2010-2014 Tinyboard Development Group
  41. <br><a href="https://engine.vichan.net/">vichan</a> Copyright &copy; 2012-2016 vichan-devel</p>
  42. {% for footer in config.footer %}<p class="unimportant" style="text-align:center;">{{ footer }}</p>{% endfor %}
  43. </footer>
  44. <script type="text/javascript">{% raw %}
  45. ready();
  46. {% endraw %}</script>
  47. </body>
  48. </html>