]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/templates/mirrors.html
Text improvements (english).
[people/shoehn/ipfire.org.git] / www / templates / mirrors.html
CommitLineData
940227cb
MT
1{% extends "base-2.html" %}
2
3{% block title %}Mirrors{% end block %}
4
5{% block content %}
6 <h3>mirrors.ipfire.org</h3>
7 <p>
8 The IPFire project is hosted on several servers to provide a high
9 availabilty of service.
10 </p>
11 <p>
12 This is the list of the download mirrors. Most of them are not owned
13 and managed by the IPFire project. So please do not call us to get them
14 work again if there is a problem.
15 </p>
16
17 <br class="clear" />
18
19 <h3>{{ _("List of servers") }}</h3>
20 <table class="mirrors">
21 {% for mirror in mirrors %}
22 <tr>
23 <td class="hostname {{ mirror.state.lower() }}">
24 <a href="/mirror/{{ mirror.id }}">{{ mirror.hostname }}</a>
25 </td>
26 {% if not mirror.state == "UP" %}
27 <td>{{ _("Last update") }}: {{ locale.format_date(mirror.last_update) }}.</td>
28 {% else %}
29 <td>&nbsp;</td>
30 {% end %}
31 </tr>
32 {% end %}
33 </table>
34{% end block %}
35
36{% block sidebar %}
37 {{ modules.SidebarBanner() }}
38{% end block %}