forked from I2P_Developers/i2p.www
18 lines
804 B
HTML
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') }}" /> {% 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 %}
|