2012-02-14 04:17:49 -05:00
<!doctype html>
2010-11-02 06:57:33 -04:00
< html >
< head >
2012-05-05 11:33:10 -04:00
< meta charset = "utf-8" >
2013-06-24 08:23:09 -04:00
< script type = "text/javascript" >
var active_page = "thread";
< / script >
2013-06-15 00:22:13 -04:00
{% include 'header.html' %}
2011-10-05 00:22:53 -04:00
< title > {{ board.url }} - {{ board.name }}< / title >
2010-11-02 06:57:33 -04:00
< / head >
< body >
2011-10-05 00:22:53 -04:00
{{ boardlist.top }}
2011-10-05 04:41:34 -04: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 %}
2011-10-05 04:46:46 -04:00
{% 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 %}
2012-03-31 06:01:55 -04:00
< header >
2012-05-05 11:33:10 -04:00
< h1 > {{ board.url }} - {{ board.title|e }}< / h1 >
2012-03-31 06:01:55 -04:00
< div class = "subtitle" >
2012-04-12 12:11:41 -04:00
{% if board.subtitle %}
2012-05-05 11:33:10 -04:00
{{ board.subtitle|e }}
2012-03-31 06:01:55 -04:00
{% endif %}
{% if mod %}< p > < a href = "?/" > {% trans %}Return to dashboard{% endtrans %}< / a > < / p > {% endif %}
< / div >
< / header >
2010-11-30 04:26:55 -05:00
2012-01-08 22:25:11 -05:00
< div class = "banner" > {% trans %}Posting mode: Reply{% endtrans %} < a class = "unimportant" href = "{{ return }}" > [{% trans %}Return{% endtrans %}]< / a > < / div >
2012-12-23 21:52:32 -05:00
{% include 'attention_bar.html' %}
2011-11-23 05:18:06 -05:00
{% include 'post_form.html' %}
2011-10-01 08:09:25 -04:00
2011-10-05 00:22:53 -04:00
{% if config.blotter %}< hr / > < div class = "blotter" > {{ config.blotter }}< / div > {% endif %}
< hr / >
2011-10-05 08:53:43 -04:00
< form name = "postcontrols" action = "{{ config.post_url }}" method = "post" >
2011-10-05 00:22:53 -04:00
< input type = "hidden" name = "board" value = "{{ board.uri }}" / >
{% if mod %}< input type = "hidden" name = "mod" value = "1" / > {% endif %}
{{ body }}
2012-03-14 06:44:41 -04:00
{% include 'report_delete.html' %}
2011-01-20 21:13:50 -05:00
< / form >
2012-01-08 22:25:11 -05:00
< a href = "{{ return }}" > [{% trans %}Return{% endtrans %}]< / a >
2011-10-05 05:25:37 -04:00
2011-10-05 00:22:53 -04:00
{{ boardlist.bottom }}
2012-03-31 06:01:55 -04:00
< footer >
2013-01-20 05:23:46 -05:00
< p class = "unimportant" style = "margin-top:20px;text-align:center;" > Powered by < a href = "http://tinyboard.org/" > Tinyboard< / a > {{ config.version }} | < a href = "http://tinyboard.org/" > Tinyboard< / a > Copyright © 2010-2013 Tinyboard Development Group< / p >
2012-03-31 06:01:55 -04:00
{% for footer in config.footer %}< p class = "unimportant" style = "text-align:center;" > {{ footer }}< / p > {% endfor %}
2012-03-31 06:32:09 -04:00
< / footer >
2012-03-31 04:37:31 -04:00
< script type = "text/javascript" > { % r a w % }
ready();
{% endraw %}< / script >
2010-11-02 06:57:33 -04:00
< / body >
2011-10-05 03:38:36 -04:00
< / html >