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" />
|
2008-01-31 20:38:37 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2012-09-10 23:11:13 +00:00
|
|
|
<div class="hide"><a href="#content" title="Skip navigation" accesskey="2">Skip navigation</a></div>
|
|
|
|
<div id="branding">
|
2012-09-11 00:01:46 +00:00
|
|
|
<h1 id="logo"><a href="{{ url_for('site_show', lang=g.lang) }}"><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/lang.html" %}
|
|
|
|
{% include "global/nav.html" %}
|
|
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
<div id="footer">
|
|
|
|
{% include "global/footer.html" %}
|
2008-01-31 20:38:37 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|