]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/mirrors.html
planet: Add proper tag search function.
[people/shoehn/ipfire.org.git] / 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>
6b6308b0 26 {% module MirrorsTable(preferred_mirrors) %}
0673d1b0 27
60024cc8 28 <h2>{{ _("Worldwide mirror servers") }}</h2>
6b6308b0 29 {% module MirrorsTable(other_mirrors) %}
0673d1b0 30 {% else %}
60024cc8 31 <h2>{{ _("Worldwide mirror servers") }}</h2>
6b6308b0 32 {% module MirrorsTable(other_mirrors) %}
0673d1b0 33 {% end %}
940227cb 34{% end block %}