Files
I2P_Website/i2p2www/pages/downloads/select.html
2012-12-05 01:21:34 +00:00

18 lines
804 B
HTML

{% extends "global/layout.html" %}
{% block title %}Mirror selection{% endblock %}
{% block content %}
<h1>Mirror selection</h1>
<h2>File: /{{ file }}</h2>
{% for protocol in mirrors -%}
<div class="protocol">
<h3>{{ protocol.name | upper }}</h3>
<ul>
<li><a href="{{ url_for('downloads_redirect', protocol=protocol.name, file=file) }}">Any mirror</a></li>
{% for mirror in protocol.mirrors -%}
<li><img src="{{ url_for('static', filename='images/'+mirror.country+'.png') }}" />&nbsp;{% if mirror.org_url %}<a href="{{ mirror.org_url }}">{% endif %}{{ mirror.org }}{% if mirror.org_url %}</a>{% endif %} <a href="{{ url_for('downloads_redirect', protocol=protocol.name, file=file, mirror=loop.index-1) }}">[Download]</a></li>
{%- endfor %}
</ul>
</div>
{%- endfor %}
{% endblock %}