]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/mirrors.html
Use new geoip database.
[ipfire.org.git] / www / templates / mirrors.html
CommitLineData
60024cc8 1{% extends "base-1.html" %}
940227cb
MT
2
3{% block title %}Mirrors{% end block %}
4
60024cc8
MT
5{% block body %}
6 <div class="page-header">
7 <h1>mirrors.ipfire.org</h1>
8 </div>
940227cb 9
60024cc8
MT
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 %}
940227cb 23
119f55d7 24 {% if preferred_mirrors %}
60024cc8 25 <h2>{{ _("Mirror servers nearby") }}</h2>
0673d1b0
MT
26 {{ modules.MirrorsTable(preferred_mirrors) }}
27
60024cc8 28 <h2>{{ _("Worldwide mirror servers") }}</h2>
0673d1b0
MT
29 {{ modules.MirrorsTable(other_mirrors) }}
30 {% else %}
60024cc8 31 <h2>{{ _("Worldwide mirror servers") }}</h2>
119f55d7 32 {{ modules.MirrorsTable(other_mirrors) }}
0673d1b0 33 {% end %}
940227cb 34{% end block %}