]> git.ipfire.org Git - ipfire.org.git/blob - templates/mirrors.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / mirrors.html
1 {% extends "base-1.html" %}
2
3 {% block title %}Mirrors{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h1>mirrors.ipfire.org</h1>
8 </div>
9
10 {% if lang == "de" %}
11 <p>
12 Das IPFire-Projekt ist auf vielen Servern gehostet um
13 von jedem Ort der Welt die bestmögliche Verfügbarkeit
14 und Downloadgeschwindigkeit zu gewährleisten.
15 </p>
16 {% else %}
17 <p>
18 The IPFire project is hosted on several servers to provide a high
19 availabilty of service and download speed from any place
20 on the world.
21 </p>
22 {% end %}
23
24 {% if preferred_mirrors %}
25 <h2>{{ _("Mirror servers nearby") }}</h2>
26 {{ modules.MirrorsTable(preferred_mirrors) }}
27
28 <h2>{{ _("Worldwide mirror servers") }}</h2>
29 {{ modules.MirrorsTable(other_mirrors) }}
30 {% else %}
31 <h2>{{ _("Worldwide mirror servers") }}</h2>
32 {{ modules.MirrorsTable(other_mirrors) }}
33 {% end %}
34 {% end block %}