2012-12-20 04:46:37 +00:00
|
|
|
{%- from "global/macros" import change_lang with context -%}
|
2012-09-10 23:11:13 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2008-01-31 20:38:37 +00:00
|
|
|
<head>
|
2012-09-10 23:11:13 +00:00
|
|
|
<meta charset="UTF-8">
|
2012-12-19 02:53:11 +00:00
|
|
|
<title>{% block title_outer %}{% block title %}{% endblock %} - I2P{% endblock %}</title>
|
2012-12-19 04:51:36 +00:00
|
|
|
<link rel="canonical" href="{{ canonical() }}" />
|
2012-09-10 23:40:49 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles/' + g.theme + '.css') }}" title="{{ g.theme }}" />
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}" />
|
2010-07-31 15:24:13 +00:00
|
|
|
<meta name="robots" content="NOODP" />
|
2012-12-13 21:17:22 +00:00
|
|
|
{%- block headextra %}{% endblock %}
|
2008-01-31 20:38:37 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2012-09-17 22:55:32 +00:00
|
|
|
<div class="hide"><a href="#content" title="Skip navigation" accesskey="2">{{ _('Skip navigation') }}</a></div>
|
2012-09-10 23:11:13 +00:00
|
|
|
<div id="branding">
|
2012-09-14 02:03:44 +00:00
|
|
|
<h1 id="logo"><a href="{{ site_url() }}"><img src="{{ url_for('static', filename='images/logo_medium.png') }}" alt="I2P" /></a></h1>
|
2012-09-10 23:11:13 +00:00
|
|
|
<div class="title">{{ self.title() }}</div>
|
|
|
|
</div>
|
|
|
|
<div class="navigation">
|
|
|
|
{% include "global/nav.html" %}
|
|
|
|
</div>
|
|
|
|
<div id="content">
|
2012-12-14 03:43:17 +00:00
|
|
|
{% block content_outer %}
|
2012-09-11 00:09:39 +00:00
|
|
|
<div class="inner">
|
2012-12-14 03:41:29 +00:00
|
|
|
{%- if self.lastupdated() or self.accuratefor() -%}
|
|
|
|
<div class="lastupdated">
|
|
|
|
This page {% if self.lastupdated() %}was last updated in {% block lastupdated %}{% endblock %}{% endif -%}
|
|
|
|
{% if self.lastupdated() and self.accuratefor() %} and {% endif -%}
|
|
|
|
{% if self.accuratefor() %}is accurate for router version {% block accuratefor %}{% endblock %}{% endif %}.
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2012-09-10 23:11:13 +00:00
|
|
|
{% block content %}{% endblock %}
|
2012-09-11 00:09:39 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2012-09-10 23:11:13 +00:00
|
|
|
</div>
|
|
|
|
<div id="footer">
|
|
|
|
{% include "global/footer.html" %}
|
2008-01-31 20:38:37 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|