The version of vichan running on lainchan.org
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

122 rindas
4.2KB

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
  6. <script type="text/javascript">
  7. var
  8. {% if not no_post_form %}
  9. active_page = "index"
  10. , board_name = "{{ board.uri }}";
  11. {% else %}
  12. active_page = "ukko";
  13. {% endif %}
  14. </script>
  15. {% include 'header.html' %}
  16. <title>{{ board.url }} - {{ board.title|e }}</title>
  17. </head>
  18. <body class="8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %} active-{% if not no_post_form %}index{% else %}ukko{% endif %}" data-stylesheet="{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}">
  19. <div class="bar top">
  20. {{ boardlist.top }}
  21. </div>
  22. {% 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 %}
  23. {% if config.url_banner %}<img class="board_image" 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 %}
  24. <div id="pagewrap">
  25. <header>
  26. <h1 class="glitch" data-text="{{ board.url }} - {{ board.title|e }}">{{ board.url }} - {{ board.title|e }}</h1>
  27. <div class="subtitle">
  28. {% if board.subtitle %}
  29. {% if config.allow_subtitle_html %}
  30. {{ board.subtitle }}
  31. {% else %}
  32. {{ board.subtitle|e }}
  33. {% endif %}
  34. {% endif %}
  35. {% if mod %}
  36. <p><a href="?/">{% trans %}Return to dashboard{% endtrans %}</a></p>{% endif %}
  37. </div>
  38. </header>
  39. {% include 'attention_bar.html' %}
  40. {{ config.ad.top }}
  41. {% if not no_post_form %}
  42. {% include 'post_form.html' %}
  43. {% else %}
  44. {% include 'boardlist.html' %}
  45. {% endif %}
  46. {% if config.page_nav_top %}
  47. <!--<div class="pages top">
  48. {% for page in pages %}
  49. [<a {% if page.selected %}class="selected"{% endif %}{% if not page.selected %}href="{{ page.link }}"{% endif %}>{{ page.num }}</a>]{% if loop.last %} {% endif %}
  50. {% endfor %}
  51. {{ btn.next }}
  52. </div>-->
  53. {% endif %}
  54. {% if config.global_message %}<hr /><div class="blotter">{{ config.global_message }}</div>{% endif %}
  55. <hr />
  56. {% if config.catalog_link %}
  57. | <a href="{{ config.root }}{{ board.dir }}{{ config.catalog_link }}">Catalog</a>
  58. {% endif %}
  59. {% if config.home_link %}
  60. | <a href="{{ config.root }}">Home</a>
  61. {% endif %}
  62. <hr />
  63. <form name="postcontrols" action="{{ config.post_url }}" method="post">
  64. <input type="hidden" name="board" value="{{ board.uri }}" />
  65. {% if mod %}<input type="hidden" name="mod" value="1" />{% endif %}
  66. {{ body }}
  67. {% include 'report_delete.html' %}
  68. </form>
  69. {{ boardlist.bottom }}
  70. {{ config.ad.bottom }}
  71. <footer>
  72. <p>&nbsp;</p>
  73. <p>&nbsp;</p>
  74. <p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> +
  75. <a href='https://int.vichan.net/devel/'>vichan</a> +
  76. <a href='https://github.com/lainchan/lainchan'>lainchan</a> {{ config.version }} -
  77. <br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group
  78. <br><a href="https://engine.vichan.net/">vichan</a> Copyright &copy; 2012-2016 vichan-devel
  79. <br><a href="https://github.com/lainchan/lainchan">lainchan</a> Copyright &copy; 2014-2017 lainchan Administration</p>
  80. {% for footer in config.footer %}<p class="unimportant" style="text-align:center;">{{ footer }}</p>{% endfor %}
  81. </footer>
  82. </div>
  83. <div class="bar bottom">
  84. <div class="pages">
  85. {{ btn.prev }} [ {% for page in pages %}
  86. <a {% if page.selected %}class="selected"{% endif %}{% if not page.selected %}href="{{ page.link }}"{% endif %}>{{ page.num }}</a>{% if not loop.last %} /{% endif %}
  87. {% endfor %} ] {{ btn.next }}
  88. {% if config.catalog_link %}
  89. | <a href="{{ config.root }}{{ board.dir }}{{ config.catalog_link }}">Catalog</a>
  90. {% endif %}
  91. {% if config.home_link %}
  92. | <a href="{{ config.root }}">Home</a>
  93. {% endif %}
  94. </div>
  95. </div>
  96. </div>
  97. <script type="text/javascript">{% raw %}
  98. ready();
  99. {% endraw %}</script>
  100. </body>
  101. </html>