2013-07-31 10:28:26 +02:00
<!doctype html>
< html >
< head >
< meta charset = "utf-8" >
2013-07-31 20:54:20 +02:00
< script type = "text/javascript" >
2016-05-05 14:38:24 +02:00
var active_page = "thread"
, board_name = "{{ board.uri }}"
, thread_id = "{{ thread.id }}";
2013-07-31 20:54:20 +02:00
< / script >
{% include 'header.html' %}
2015-02-17 01:31:15 +01:00
2020-08-15 16:19:47 +02:00
{% set meta_subject %}{% if config.thread_subject_in_title and thread.subject %}{{ thread.subject|e }}{% else %}{{ thread.body_nomarkup|remove_modifiers[:256]|e }}{% endif %}{% endset %}
2015-02-17 01:31:15 +01:00
2016-05-06 12:23:18 +02:00
< meta name = "description" content = "{{ board.url }} - {{ board.title|e }} - {{ meta_subject }}" / >
2015-02-17 01:31:15 +01:00
< meta name = "twitter:card" value = "summary" >
< meta property = "og:title" content = "{{ meta_subject }}" / >
< meta property = "og:type" content = "article" / >
2016-05-06 12:23:18 +02:00
< meta property = "og:url" content = "{{ config.domain }}/{{ board.uri }}/{{ config.dir.res }}{{ thread.id }}.html" / >
{% if thread.files.0.thumb %}< meta property = "og:image" content = "{{ config.domain }}/{{ board.uri }}/{{ config.dir.thumb }}{{ thread.files.0.thumb }}" / > {% endif %}
2020-08-15 16:19:47 +02:00
< meta property = "og:description" content = "{{ thread.body_nomarkup|remove_modifiers|e }}" / >
2015-02-17 01:31:15 +01:00
< title > {{ board.url }} - {{ meta_subject }}< / title >
2013-07-31 10:28:26 +02:00
< / head >
2015-09-25 17:17:05 +02:00
< body class = "8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %} active-thread" data-stylesheet = "{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}" >
2013-07-31 10:28:26 +02:00
{{ boardlist.top }}
2016-05-06 15:09:25 +02:00
< a name = "top" > < / a >
2013-07-31 10:28:26 +02:00
{% 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 %}
2014-01-06 16:38:48 +01:00
{% 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 %}
2013-07-31 10:28:26 +02:00
< header >
< h1 > {{ board.url }} - {{ board.title|e }}< / h1 >
< div class = "subtitle" >
{% if board.subtitle %}
2013-08-08 20:58:44 +02:00
{% if config.allow_subtitle_html %}
{{ board.subtitle }}
{% else %}
{{ board.subtitle|e }}
{% endif %}
2013-07-31 10:28:26 +02:00
{% endif %}
{% if mod %}< p > < a href = "?/" > {% trans %}Return to dashboard{% endtrans %}< / a > < / p > {% endif %}
< / div >
< / header >
2013-06-15 06:22:13 +02:00
2014-01-06 16:38:48 +01:00
{% include 'attention_bar.html' %}
2013-07-31 20:54:20 +02:00
2015-09-25 17:17:05 +02:00
< div class = "banner" > {% trans %}Posting mode: Reply{% endtrans %} < a class = "unimportant" href = "{{ return }}" > [{% trans %}Return{% endtrans %}]< / a > < a class = "unimportant" href = "#bottom" > [{% trans %}Go to bottom {% endtrans %}]< / a > < / div >
2013-08-01 01:25:04 +02:00
2013-08-08 23:57:52 +02:00
{{ config.ad.top }}
2014-01-06 03:28:37 +01:00
{% include 'post_form.html' %}
2013-08-03 02:52:58 +02:00
{% if config.global_message %}< hr / > < div class = "blotter" > {{ config.global_message }}< / div > {% endif %}
2013-07-31 10:28:26 +02:00
< hr / >
< form name = "postcontrols" action = "{{ config.post_url }}" method = "post" >
2015-04-17 20:39:50 +02:00
< input type = "hidden" name = "board" value = "{{ board.uri }}" / >
{% if mod %}< input type = "hidden" name = "mod" value = "1" / > {% endif %}
{{ body }}
< div id = "thread-interactions" >
< span id = "thread-links" >
< a id = "thread-return" href = "{{ return }}" > [{% trans %}Return{% endtrans %}]< / a >
< a id = "thread-top" href = "#top" > [{% trans %}Go to top{% endtrans %}]< / a >
2016-05-06 14:14:22 +02:00
{% if config.catalog_link %}
2022-06-20 20:09:55 +02:00
< a id = "thread-catalog" href = "{{ config.root }}{% if mod %}{{ config.file_mod }}?/{% endif %}{{ board.dir }}{{ config.catalog_link }}" > {% trans %}Catalog{% endtrans %}< / a >
2016-05-06 14:14:22 +02:00
{% endif %}
2015-04-17 20:39:50 +02:00
< / span >
< span id = "thread-quick-reply" >
< a id = "link-quick-reply" href = "#" > [{% trans %}Post a Reply{% endtrans %}]< / a >
< / span >
{% include 'report_delete.html' %}
< / div >
< div class = "clearfix" > < / div >
2013-07-31 10:28:26 +02:00
< / form >
2014-10-02 17:12:15 +02:00
2017-04-21 03:09:48 +02:00
< a name = "bottom" > < / a >
2013-07-31 10:28:26 +02:00
{{ boardlist.bottom }}
2013-08-08 23:57:52 +02:00
{{ config.ad.bottom }}
2022-12-06 20:55:26 +01:00
{% include 'footer.html' %}
2021-11-04 03:45:01 +01:00
< script type = "text/javascript" > { % v e r b a t i m % }
2013-07-31 10:28:26 +02:00
ready();
2021-11-04 03:45:01 +01:00
{% endverbatim %}< / script >
2013-07-31 10:28:26 +02:00
< / body >
< / html >