Files
i2p.www/www.i2p2/pages/_layout.html
2009-06-04 09:37:51 +00:00

29 lines
1.0 KiB
HTML

{% include "_urlify" %}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title>{% filter capture('title') %}{% block title %}{% endblock %}{% endfilter %} - I2P</title>
{% if theme == 'light' %}
<link rel="stylesheet" href="_static/styles/default.css" type="text/css" title="Light">
{% else %}
<link rel="stylesheet" href="_static/styles/dark.css" type="text/css" title="Dark">
{% endif %}
<link rel="shortcut icon" href="_static/favicon.ico" />
</head>
<body>
<div class="hide"><a href="#main" title="Skip navigation" accesskey="2">Skip navigation</a></div>
<div class="logo">
<a href="index.html"><img src="_static/images/i2plogo.png" alt="I2P Logo" /></a>
</div>
<h1>{{ title }}</h1>
<div class="menu">
{% include "_menu.html" %}
</div>
<div class="main" id="main">
{% block content %}{% endblock %}
</div>
</body>
</html>