]> git.ipfire.org Git - ipfire.org.git/blobdiff - www/templates/mirrors.html
Import of new website.
[ipfire.org.git] / www / templates / mirrors.html
diff --git a/www/templates/mirrors.html b/www/templates/mirrors.html
new file mode 100644 (file)
index 0000000..0ec796a
--- /dev/null
@@ -0,0 +1,38 @@
+{% extends "base-2.html" %}
+
+{% block title %}Mirrors{% end block %}
+
+{% block content %}
+       <h3>mirrors.ipfire.org</h3>
+       <p>
+               The IPFire project is hosted on several servers to provide a high
+               availabilty of service.
+       </p>
+       <p>
+               This is the list of the download mirrors. Most of them are not owned
+               and managed by the IPFire project. So please do not call us to get them
+               work again if there is a problem.
+       </p>
+
+       <br class="clear" />
+
+       <h3>{{ _("List of servers") }}</h3>
+       <table class="mirrors">
+               {% for mirror in mirrors %}
+                       <tr>
+                               <td class="hostname {{ mirror.state.lower() }}">
+                                       <a href="/mirror/{{ mirror.id }}">{{ mirror.hostname }}</a>
+                               </td>
+                               {% if not mirror.state == "UP" %}
+                                       <td>{{ _("Last update") }}: {{ locale.format_date(mirror.last_update) }}.</td>
+                               {% else %}
+                                       <td>&nbsp;</td>
+                               {% end %}
+                       </tr>
+               {% end %}
+       </table>
+{% end block %}
+
+{% block sidebar %}
+       {{ modules.SidebarBanner() }}
+{% end block %}