2013-01-06 09:41:00 +01:00
<!doctype html>
< html >
< head >
< meta charset = "utf-8" >
2013-12-25 18:31:35 +01:00
< script type = "text/javascript" >
active_page = "page";
< / script >
2013-01-06 09:41:00 +01:00
{% include 'header.html' %}
2014-10-19 03:07:04 +02:00
{% if mod %}{% include 'mod/header.html' %}{% endif %}
2013-01-06 09:41:00 +01:00
< title > {{ title }}< / title >
< / head >
2014-10-19 03:07:04 +02:00
< body class = "8chan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %} stylesheet-{% if config.default_stylesheet.1 != '' and not mod %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}" >
2013-01-06 09:41:00 +01: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 %}
< header >
2015-04-16 12:55:04 +02:00
{% if config.site_logo %}
< figure id = "logo" >
< a id = "logo-link" href = "/" title = "Return to the front page" >
< img id = "logo-img" src = "{{config.site_logo}}" alt = "{{config.site_nane}}" / >
< / a >
< / figure >
{% endif %}
{% if title %}< h1 > {{ title }}< / h1 > {% endif %}
2013-01-06 09:41:00 +01:00
< div class = "subtitle" >
{% if subtitle %}
{{ subtitle }}
{% endif %}
{% if mod and not hide_dashboard_link %}< p > < a href = "?/" > {% trans %}Return to dashboard{% endtrans %}< / a > < / p > {% endif %}
< / div >
< / header >
2014-08-10 16:42:57 +02:00
{{ body }}
2013-01-06 09:41:00 +01:00
< hr >
< footer >
2014-04-17 17:11:27 +02: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 > {{ config.version }} -
< br > < a href = "http://tinyboard.org/" > Tinyboard< / a > Copyright © 2010-2014 Tinyboard Development Group
2015-03-29 04:37:15 +02:00
< br > < a href = "https://int.vichan.net/devel/" > vichan< / a > Copyright © 2012-2014 vichan-devel
2015-03-28 11:15:08 +01:00
< br > < a href = "https://8ch.net/8code/" > infinity< / a > Copyright © 2013-2015 Fredrick Brennan & Infinity Development Group< / p >
2014-04-05 18:25:39 +02:00
{% for footer in config.footer %}< p class = "unimportant" style = "text-align:center;" > {{ footer }}< / p > {% endfor %}
2013-01-06 09:41:00 +01:00
< / footer >
< / body >
2013-10-23 12:01:28 +02:00
< / html >