2012-02-14 09:17:49 +00:00
<!doctype html>
2010-11-02 10:57:33 +00:00
< html >
< head >
2011-10-05 04:22:53 +00:00
< link rel = "stylesheet" media = "screen" href = "{{ config.url_stylesheet }}" / >
{% if config.url_favicon %}< link rel = "shortcut icon" href = "{{ config.url_favicon }}" / > {% endif %}
< title > {{ board.url }} - {{ board.name }}< / title >
2011-01-03 05:29:34 +00:00
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" / >
2010-11-02 10:57:33 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" / >
2011-10-05 04:22:53 +00:00
{% if config.meta_keywords %}< meta name = "keywords" content = "{{ config.meta_keywords }}" / > {% endif %}
< link rel = "stylesheet" type = "text/css" id = "stylesheet" href = "{{ config.uri_stylesheets }}{{ config.default_stylesheet.1 }}" / >
2012-03-14 10:44:41 +00:00
{% if not nojavascript %}
< script type = "text/javascript" src = "{{ config.url_javascript }}" > < / script >
{% if not config.additional_javascript_compile %}
{% for javascript in config.additional_javascript %}< script type = "text/javascript" src = "{{ config.additional_javascript_url }}{{ javascript }}" > < / script > {% endfor %}
{% endif %}
{% endif %}
2011-10-05 04:22:53 +00:00
{% if config.recaptcha %}< style type = "text/css" > { % r a w % }
2011-06-15 18:59:16 +00:00
.recaptcha_image_cell {
background: none !important;
}
table.recaptchatable {
border: none !important;
}
#recaptcha_logo, #recaptcha_tagline {
display: none;
float: right;
}
.recaptchatable a {
display: block;
}
2011-10-05 04:22:53 +00:00
{% endraw %}< / style > {% endif %}
2012-03-13 13:08:03 +00:00
2010-11-02 10:57:33 +00:00
< / head >
< body >
2011-10-05 04:22:53 +00:00
{{ boardlist.top }}
2011-10-05 08:41:34 +00: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 08:46:46 +00: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 10:01:55 +00:00
< header >
< h1 > {{ board.url }} - {{ board.name }}< / h1 >
< div class = "subtitle" >
{% if board.title %}
{{ board.title }}
{% endif %}
{% if mod %}< p > < a href = "?/" > {% trans %}Return to dashboard{% endtrans %}< / a > < / p > {% endif %}
< / div >
< / header >
2010-11-30 09:26:55 +00:00
2012-01-09 03:25:11 +00:00
< div class = "banner" > {% trans %}Posting mode: Reply{% endtrans %} < a class = "unimportant" href = "{{ return }}" > [{% trans %}Return{% endtrans %}]< / a > < / div >
2011-11-23 10:18:06 +00:00
{% include 'post_form.html' %}
2011-10-01 12:09:25 +00:00
2011-10-05 04:22:53 +00:00
{% if config.blotter %}< hr / > < div class = "blotter" > {{ config.blotter }}< / div > {% endif %}
< hr / >
2011-10-05 12:53:43 +00:00
< form name = "postcontrols" action = "{{ config.post_url }}" method = "post" >
2011-10-05 04:22:53 +00:00
< input type = "hidden" name = "board" value = "{{ board.uri }}" / >
{% if mod %}< input type = "hidden" name = "mod" value = "1" / > {% endif %}
{{ body }}
2012-03-14 10:44:41 +00:00
{% include 'report_delete.html' %}
2011-01-21 02:13:50 +00:00
< / form >
2012-01-09 03:25:11 +00:00
< a href = "{{ return }}" > [{% trans %}Return{% endtrans %}]< / a >
2011-10-05 09:25:37 +00:00
2011-10-05 04:22:53 +00:00
{{ boardlist.bottom }}
2012-03-31 10:01:55 +00:00
< footer >
< 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-2012 Tinyboard Development Group< / p >
{% for footer in config.footer %}< p class = "unimportant" style = "text-align:center;" > {{ footer }}< / p > {% endfor %}
< / footer > >
2012-03-31 08:37:31 +00:00
< script type = "text/javascript" > { % r a w % }
ready();
{% endraw %}< / script >
2010-11-02 10:57:33 +00:00
< / body >
2011-10-05 07:38:36 +00:00
< / html >