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" >
< link rel = "stylesheet" media = "screen" href = "{{ config.url_stylesheet }}" >
{% if config.url_favicon %}< link rel = "shortcut icon" href = "{{ config.url_favicon }}" > {% endif %}
2011-10-05 00:22:53 -04:00
< title > {{ title }}< / title >
2012-05-05 11:33:10 -04:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, user-scalable=yes" >
{% if config.default_stylesheet.1 != '' %}< link rel = "stylesheet" type = "text/css" id = "stylesheet" href = "{{ config.uri_stylesheets }}{{ config.default_stylesheet.1 }}" > {% endif %}
2011-11-18 08:06:51 -05:00
{% if not nojavascript %}< script type = "text/javascript" src = "{{ config.url_javascript }}" > < / script > {% endif %}
2010-11-02 06:57:33 -04:00
< / head >
< body >
2012-04-22 03:50:53 -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 %}
2012-03-31 06:01:55 -04:00
< header >
< h1 > {{ title }}< / h1 >
< div class = "subtitle" >
{% if subtitle %}
{{ subtitle }}
{% endif %}
2012-04-16 06:11:10 -04:00
{% if mod and not hide_dashboard_link %}< p > < a href = "?/" > {% trans %}Return to dashboard{% endtrans %}< / a > < / p > {% endif %}
2012-03-31 06:01:55 -04:00
< / div >
< / header >
2011-10-05 00:22:53 -04:00
{{ body }}
2012-04-22 03:50:53 -04:00
< hr >
2012-03-31 06:01:55 -04: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 >
< / footer >
2010-11-02 06:57:33 -04:00
< / body >
2011-01-27 12:19:17 -05:00
< / html >