2011-10-05 00:22:53 -04:00
<!DOCTYPE html>
2010-11-02 06:57:33 -04:00
< html >
< head >
2011-10-05 00:22:53 -04: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 00:29:34 -05:00
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" / >
2010-11-02 06:57:33 -04:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" / >
2011-10-05 00:22:53 -04: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 }}" / >
< script type = "text/javascript" src = "{{ config.url_javascript }}" > < / script >
{% if config.recaptcha %}< style type = "text/css" > { % r a w % }
2011-06-15 14:59:16 -04: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 00:22:53 -04:00
{% endraw %}< / style > {% endif %}
2010-11-02 06:57:33 -04:00
< / head >
2011-10-05 04:41:34 -04:00
< 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 00:22:53 -04:00
{% if config.url_banner %}< img class = "banner" src = "{{ config.url_banner }}" { % if config . banner_height % } style = "width:{% if config.banner_width %}{{ config.banner_width }}px{% endif %};height:{{ config.banner_height }}px" { % endif % } alt = "" / > {% endif %}
< h1 > {{ board.url }} - {{ board.name }}< / h1 >
< div class = "title" > {% if board.title %}{{ board.title }}{% endif %}< p > {% if mod %}< a href = "?/" > Return to dashboard< / a > {% endif %}< / p > < / div >
2010-12-16 03:12:13 -05:00
2010-11-30 04:26:55 -05:00
2011-10-05 00:22:53 -04:00
< form name = "post" onsubmit = "return dopost(this);" enctype = "multipart/form-data" action = "{{ config.post_url }}" method = "post" >
{{ hidden_inputs }}
< input type = "hidden" name = "board" value = "{{ board.uri }}" / >
{% if mod %}< input type = "hidden" name = "mod" value = "1" / > {% endif %}
2010-11-02 06:57:33 -04:00
< table >
< tr >
< th >
Name
< / th >
< td >
2011-02-03 04:28:14 -05:00
< input type = "text" name = "name" size = "25" maxlength = "50" autocomplete = "off" / >
2010-11-02 06:57:33 -04:00
< / td >
< / tr >
< tr >
< th >
Email
< / th >
< td >
2011-02-17 05:20:04 -05:00
< input type = "text" name = "email" size = "25" maxlength = "40" autocomplete = "off" / >
2010-11-02 06:57:33 -04:00
< / td >
< / tr >
< tr >
< th >
Subject
< / th >
< td >
2011-08-26 22:11:34 -04:00
< input style = "float:left;" type = "text" name = "subject" size = "25" maxlength = "100" autocomplete = "off" / >
2011-10-05 00:22:53 -04:00
< input accesskey = "s" style = "margin-left:2px;" type = "submit" name = "post" value = "{% if config.button_newtopic %}{{ config.button_newtopic }}{% else %}New Topic{% endif %}" / > {% if config.spoiler_images %} < input name = "spoiler" type = "checkbox" / > Spoiler Image{% endif %}
2010-11-02 06:57:33 -04:00
< / td >
< / tr >
< tr >
< th >
Comment
< / th >
< td >
< textarea name = "body" id = "body" rows = "5" cols = "30" > < / textarea >
< / td >
< / tr >
2011-10-05 00:22:53 -04:00
{% if config.recaptcha %}
2011-06-15 14:59:16 -04:00
< tr >
< th >
Verification
< / th >
< td >
2011-10-05 00:22:53 -04:00
< script type = "text/javascript" src = "http://www.google.com/recaptcha/api/challenge?k={{ config.recaptcha_public }}" > < / script >
2011-06-15 14:59:16 -04:00
< / td >
< / tr >
2011-10-05 00:22:53 -04:00
{% endif %}
2010-11-02 06:57:33 -04:00
< tr >
< th >
File
< / th >
< td >
2011-10-05 00:22:53 -04:00
< input type = "file" name = "file" / >
2010-11-02 06:57:33 -04:00
< / td >
< / tr >
2011-10-05 00:22:53 -04:00
{% if config.enable_embedding %}
2011-05-18 03:05:48 -04:00
< tr >
< th >
Embed
< / th >
< td >
2011-05-25 05:44:48 -04:00
< input type = "text" name = "embed" size = "30" maxlength = "120" autocomplete = "off" / >
2011-05-18 03:05:48 -04:00
< / td >
< / tr >
2011-10-05 00:22:53 -04:00
{% endif %}
{% if mod %}
2011-01-02 05:10:18 -05:00
< tr >
< th >
Flags
< / th >
< td >
< div >
< label for = "sticky" > Sticky< / label >
2011-10-05 00:22:53 -04:00
< input title = "Sticky" type = "checkbox" name = "sticky" id = "sticky" / > < br / >
2011-01-02 05:10:18 -05:00
< / div >
< div >
2011-10-05 00:22:53 -04:00
< label for = "lock" > Lock< / label > < br / >
< input title = "Lock" type = "checkbox" name = "lock" id = "lock" / >
2011-01-02 05:10:18 -05:00
< / div >
2011-02-03 04:28:14 -05:00
< div >
2011-10-05 00:22:53 -04:00
< label for = "raw" > Raw HTML< / label > < br / >
< input title = "Raw HTML" type = "checkbox" name = "raw" id = "raw" / >
2011-02-03 04:28:14 -05:00
< / div >
2011-01-02 05:10:18 -05:00
< / td >
< / tr >
2011-10-05 00:22:53 -04:00
{% endif %}
2010-11-02 06:57:33 -04:00
< tr >
< th >
Password
< / th >
< td >
2011-10-05 00:22:53 -04:00
< input type = "password" name = "password" size = "12" maxlength = "18" autocomplete = "off" / >
2010-11-02 06:57:33 -04:00
< span class = "unimportant" > (For file deletion.)< / span >
< / td >
< / tr >
< / table >
< / form >
2011-10-05 00:22:53 -04:00
< script type = "text/javascript" > { % r a w % }
2011-04-22 04:16:12 -04:00
rememberStuff();
2011-10-05 00:22:53 -04:00
{% endraw %}< / script >
{% if config.blotter %}< hr / > < div class = "blotter" > {{ config.blotter }}< / div > {% endif %}
< hr / >
< form name = "postcontrols" action = "{{ post_url }}" method = "post" >
< input type = "hidden" name = "board" value = "{{ board.uri }}" / >
{% if mod %}< input type = "hidden" name = "mod" value = "1" / > {% endif %}
{{ body }}
2011-01-20 21:13:50 -05:00
< div class = "delete" >
2011-10-05 00:22:53 -04:00
Delete Post [< input title = "Delete file only" type = "checkbox" name = "file" id = "delete_file" / >
2011-02-20 01:19:57 -05:00
< label for = "delete_file" > File< / label > ] < label for = "password" > Password< / label >
2011-02-20 06:48:41 -05:00
< input id = "password" type = "password" name = "password" size = "12" maxlength = "18" / >
2011-02-20 01:19:57 -05:00
< input type = "submit" name = "delete" value = "Delete" / >
< / div >
< div class = "delete" style = "clear:both" >
< label for = "reason" > Reason< / label >
< input id = "reason" type = "text" name = "reason" size = "20" maxlength = "30" / >
< input type = "submit" name = "report" value = "Report" / >
2011-01-20 21:13:50 -05:00
< / div >
< / form >
2011-10-05 00:22:53 -04:00
< div class = "pages" > {{ btn.prev }} {% for page in pages %}
[< a { % if page . selected % } class = "selected" { % endif % } { % if not page . selected % } href = "{{ page.link }}" { % endif % } > {{ page.num }}< / a > ]{% if loop.last %} {% endif %}
{% endfor %} {{ btn.next }}< / div >
{{ boardlist.bottom }}
< p class = "unimportant" style = "margin-top:20px;text-align:center;" > Powered by < a href = "http://tinyboard.org/" > Tinyboard< / a > v0.9.4 | < a href = "http://tinyboard.org/" > Tinyboard< / a > Copyright © 2010-2011 Tinyboard Development Group< / p >
< p class = "unimportant" style = "text-align:center;" > All trademarks, copyrights, comments, and images on this page are owned by or are the responsibility of their respective parties.< / p >
2010-11-02 06:57:33 -04:00
< / body >
2011-10-05 04:41:34 -04:00
< / html >