2012-05-05 11:33:10 -04:00
<!doctype html>
< html >
< head >
{% block head %}
2013-01-06 03:41:00 -05:00
{% include 'header.html' %}
< title > {{ board.url }} - {{ board.name }}< / title >
2012-05-05 11:33:10 -04:00
{% endblock %}
< / head >
2016-01-08 20:33:30 -05:00
< meta name = "viewport" content = "width=device-width, initial-scale=1.0, maximum-scale=1" >
2016-05-06 06:10:50 -04:00
< body class = "8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %}" data-stylesheet = "{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}" >
2012-05-05 11:33:10 -04:00
{{ boardlist.top }}
{% 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 %}
{% 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 %}
2017-05-31 18:15:01 -04:00
< div id = "pagewrap" >
2012-05-05 11:33:10 -04:00
< header >
2017-05-31 18:15:01 -04:00
< h1 class = "glitch" data-text = "{{ board.url }} - {{ board.name }}" > {{ board.url }} - {{ board.name }}< / h1 >
2012-05-05 11:33:10 -04:00
< div class = "subtitle" >
{% if board.title %}
{{ board.title|e }}
{% endif %}
{% if mod %}< p > < a href = "?/" > {% trans %}Return to dashboard{% endtrans %}< / a > < / p > {% endif %}
< / div >
< / header >
2012-12-23 21:43:48 -05:00
{% include 'attention_bar.html' %}
2012-12-23 21:52:32 -05:00
{% include 'post_form.html' %}
2012-05-05 11:33:10 -04:00
2013-08-02 20:52:58 -04:00
{% if config.global_message %}< hr / > < div class = "blotter" > {{ config.global_message }}< / div > {% endif %}
2012-05-05 11:33:10 -04:00
< hr / >
< form name = "postcontrols" action = "{{ config.post_url }}" method = "post" >
< input type = "hidden" name = "board" value = "{{ board.uri }}" / >
{% if mod %}< input type = "hidden" name = "mod" value = "1" / > {% endif %}
{{ body }}
{% include 'report_delete.html' %}
< / form >
< 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 }}
< footer >
2016-12-10 18:04:18 -05:00
< p class = "unimportant" style = "margin-top:20px;text-align:center;" > - < a href = "http://tinyboard.org/" > Tinyboard< / a > +
< a href = 'https://int.vichan.net/devel/' > vichan< / a > +
< a href = 'https://github.com/lainchan/lainchan' > lainchan< / a > {{ config.version }} -
< br > < a href = "http://tinyboard.org/" > Tinyboard< / a > Copyright © 2010-2014 Tinyboard Development Group
< br > < a href = "https://engine.vichan.net/" > vichan< / a > Copyright © 2012-2016 vichan-devel
2017-04-19 10:27:58 -04:00
< br > < a href = "https://github.com/lainchan/lainchan" > lainchan< / a > Copyright © 2014-2017 lainchan Administration< / p >
2016-12-10 18:04:18 -05:00
2012-05-05 11:33:10 -04:00
{% for footer in config.footer %}< p class = "unimportant" style = "text-align:center;" > {{ footer }}< / p > {% endfor %}
< / footer >
2017-05-31 18:15:01 -04:00
< / div >
2012-05-05 11:33:10 -04:00
< script type = "text/javascript" > { % r a w % }
ready();
{% endraw %}< / script >
< / body >
< / html >