1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-24 23:13:49 +01:00
vichan/templates/page.html

26 lines
896 B
HTML
Raw Normal View History

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