The version of vichan running on lainchan.org
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

57 lignes
2.8KB

  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. <div id="pagewrap">
  15. <header>
  16. <h1 class="glitch" data-text="{{ board.url }} - {{ board.name }}">{{ board.url }} - {{ board.name }}</h1>
  17. <div class="subtitle">
  18. {% if board.title %}
  19. {{ board.title|e }}
  20. {% endif %}
  21. {% if mod %}<p><a href="?/">{% trans %}Return to dashboard{% endtrans %}</a></p>{% endif %}
  22. </div>
  23. </header>
  24. {% include 'attention_bar.html' %}
  25. {% include 'post_form.html' %}
  26. {% if config.global_message %}<hr /><div class="blotter">{{ config.global_message }}</div>{% endif %}
  27. <hr />
  28. <form name="postcontrols" action="{{ config.post_url }}" method="post">
  29. <input type="hidden" name="board" value="{{ board.uri }}" />
  30. {% if mod %}<input type="hidden" name="mod" value="1" />{% endif %}
  31. {{ body }}
  32. {% include 'report_delete.html' %}
  33. </form>
  34. <div class="pages">{{ btn.prev }} {% for page in pages %}
  35. [<a {% if page.selected %}class="selected"{% endif %}{% if not page.selected %}href="{{ page.link }}"{% endif %}>{{ page.num }}</a>]{% if loop.last %} {% endif %}
  36. {% endfor %} {{ btn.next }}</div>
  37. {{ boardlist.bottom }}
  38. <footer>
  39. <p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> +
  40. <a href='https://int.vichan.net/devel/'>vichan</a> +
  41. <a href='https://github.com/lainchan/lainchan'>lainchan</a> {{ config.version }} -
  42. <br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group
  43. <br><a href="https://engine.vichan.net/">vichan</a> Copyright &copy; 2012-2016 vichan-devel
  44. <br><a href="https://github.com/lainchan/lainchan">lainchan</a> Copyright &copy; 2014-2017 lainchan Administration</p>
  45. {% for footer in config.footer %}<p class="unimportant" style="text-align:center;">{{ footer }}</p>{% endfor %}
  46. </footer>
  47. </div>
  48. <script type="text/javascript">{% raw %}
  49. ready();
  50. {% endraw %}</script>
  51. </body>
  52. </html>