2012-02-14 10:17:49 +01:00
<!doctype html>
2010-11-02 11:57:33 +01:00
< html >
< head >
2012-05-05 17:33:10 +02:00
< meta charset = "utf-8" >
2013-06-15 06:22:13 +02:00
{% include 'header.html' %}
2011-10-05 06:22:53 +02:00
< title > {{ title }}< / title >
2010-11-02 11:57:33 +01:00
< / head >
< body >
2012-04-22 09:50:53 +02: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 12:01:55 +02:00
< header >
< h1 > {{ title }}< / h1 >
< div class = "subtitle" >
{% if subtitle %}
{{ subtitle }}
{% endif %}
2012-04-16 12:11:10 +02:00
{% if mod and not hide_dashboard_link %}< p > < a href = "?/" > {% trans %}Return to dashboard{% endtrans %}< / a > < / p > {% endif %}
2012-03-31 12:01:55 +02:00
< / div >
< / header >
2011-10-05 06:22:53 +02:00
{{ body }}
2012-04-22 09:50:53 +02:00
< hr >
2012-03-31 12:01:55 +02:00
< footer >
2013-01-20 11:23:46 +01: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 12:01:55 +02:00
< / footer >
2010-11-02 11:57:33 +01:00
< / body >
2011-01-27 18:19:17 +01:00
< / html >