2012-02-14 20:17:49 +11:00
<!doctype html>
2010-11-02 21:57:33 +11:00
< html >
< head >
2013-01-06 09:41:00 +01:00
{% include 'header.html' %}
2012-05-06 01:33:10 +10:00
< meta charset = "utf-8" >
2011-10-05 15:22:53 +11:00
< title > {{ board.url }} - {{ board.name }}< / title >
2010-11-02 21:57:33 +11:00
< / head >
2011-10-05 19:41:34 +11:00
< body >
2011-10-05 15:22:53 +11:00
{{ boardlist.top }}
2011-10-05 19:41:34 +11: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 19:46:46 +11: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 21:01:55 +11:00
< header >
2012-05-06 01:33:10 +10:00
< h1 > {{ board.url }} - {{ board.title|e }}< / h1 >
2012-03-31 21:01:55 +11:00
< div class = "subtitle" >
2012-04-13 02:11:41 +10:00
{% if board.subtitle %}
2012-05-06 01:33:10 +10:00
{{ board.subtitle|e }}
2012-03-31 21:01:55 +11:00
{% endif %}
{% if mod %}< p > < a href = "?/" > {% trans %}Return to dashboard{% endtrans %}< / a > < / p > {% endif %}
< / div >
< / header >
2010-12-16 19:12:13 +11:00
2012-12-24 03:43:48 +01:00
{% include 'attention_bar.html' %}
2013-06-15 00:04:08 -04:00
{% if not no_post_form %}
{% include 'post_form.html' %}
{% else %}
{% include 'boardlist.html' %}
{% endif %}
2012-12-23 18:10:18 +01:00
2011-10-05 15:22:53 +11:00
{% if config.blotter %}< hr / > < div class = "blotter" > {{ config.blotter }}< / div > {% endif %}
< hr / >
2011-10-05 23:53:43 +11:00
< form name = "postcontrols" action = "{{ config.post_url }}" method = "post" >
2011-10-05 15:22:53 +11:00
< input type = "hidden" name = "board" value = "{{ board.uri }}" / >
{% if mod %}< input type = "hidden" name = "mod" value = "1" / > {% endif %}
{{ body }}
2012-03-14 21:44:41 +11:00
{% include 'report_delete.html' %}
2011-01-21 13:13:50 +11:00
< / form >
2011-10-05 15:22:53 +11:00
< div class = "pages" > {{ btn.prev }} {% for page in pages %}
2011-11-16 16:47:15 +11:00
[< a { % if page . selected % } class = "selected" { % endif % } { % if not page . selected % } href = "{{ page.link }}" { % endif % } > {{ page.num }}< / a > ]{% if loop.last %} {% endif %}
2011-10-05 15:22:53 +11:00
{% endfor %} {{ btn.next }}< / div >
{{ boardlist.bottom }}
2012-03-31 21:01:55 +11:00
< footer >
2013-01-20 21:23:46 +11: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 21:01:55 +11:00
{% for footer in config.footer %}< p class = "unimportant" style = "text-align:center;" > {{ footer }}< / p > {% endfor %}
< / footer >
2012-03-31 19:37:31 +11:00
< script type = "text/javascript" > { % r a w % }
ready();
{% endraw %}< / script >
2010-11-02 21:57:33 +11:00
< / body >
2011-10-05 19:41:34 +11:00
< / html >