leftypol/templates/page.html

26 lines
896 B
HTML
Raw Normal View History

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