2012-12-13 21:36:49 +00:00
|
|
|
{%- from "global/macros" import site_url, change_lang, ver 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-06-01 23:36:38 +00:00
|
|
|
<title>{% block title %}{% endblock %} - I2P</title>
|
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-09-11 00:09:39 +00:00
|
|
|
{% block content_outer %}
|
|
|
|
<div class="inner">
|
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>
|