30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<?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>I2P - Mirror selection - /{{ file }}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css">
|
|
</head>
|
|
<body>
|
|
<div class="logo">
|
|
<a href="{{ domain }}" class="fade"><img src="{{ url_for('static', filename='images/i2plogo.png') }}" alt="I2P Logo" title="Invisible Internet Project (I2P)" /></a>
|
|
</div>
|
|
<div class="header">
|
|
<h1>Mirror selection</h1>
|
|
<h2>File: /{{ file }}</h2>
|
|
</div>
|
|
{% for protocol in mirrors -%}
|
|
<div class="protocol">
|
|
<h3>{{ protocol.name }}</h3>
|
|
<ul>
|
|
{% for mirror in protocol.mirrors -%}
|
|
<li><a href="{{ mirror.url }}">{{ mirror.url }}</a> {% if mirror.org_url %}<a href="{{ mirror.org_url }}">{% endif %}{{ mirror.org }}{% if mirror.org_url %}</a>{% endif %}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{%- endfor %}
|
|
</body>
|
|
</html>
|
|
|