]> git.ipfire.org Git - ipfire.org.git/blob - templates/downloads-index.html
Major update of the webapp.
[ipfire.org.git] / templates / downloads-index.html
1 {% extends "base-1.html" %}
2
3 {% block title %}{{ _("Download Center") }}{% end block %}
4
5 {% block body %}
6 <div class="page-header">
7 <h1>{{ _("IPFire Download Center") }}</h1>
8 </div>
9
10 <div class="row">
11 <div class="span12">
12 <img class="pull-right" src="{{ static_url("images/box_ipfire.png") }}" alt="{{ _("CD-Box") }}">
13
14 {% if lang == "de" %}
15 <p>
16 Willkommen in der Downloadsektion des IPFire-Projekts.
17 Hier findest du alle bisher veröffentlichten Releases zum Download..
18 </p>
19 {% else %}
20 <p>
21 Welcome to the downloads section of the IPFire project.
22 You will find all published releases of IPFire for download.
23 </p>
24 {% end %}
25 </div>
26 </div>
27
28 <hr>
29
30 <h3>{{ _("Available releases") }}</h3>
31
32 <table class="table table-striped table-hover">
33 <thead>
34 <tr>
35 <th>{{ _("Release") }}</th>
36 <th>{{ _("Release type") }}</th>
37 <th>{{ _("Release date") }}</th>
38 </tr>
39 </thead>
40 <tbody>
41 {% for release in releases %}
42 <tr>
43 <td>
44 <a href="/release/{{ release.sname }}">{{ release.name }}</a>
45 </td>
46 <td>
47 {% if release.stable %}
48 <span class="label label-success">{{ _("Stable") }}</span>
49 {% else %}
50 <span class="label label-important">{{ _("Development") }}</span>
51 {% end %}
52 </td>
53 <td>{{ locale.format_date(release.date, shorter=True) }}</td>
54 </tr>
55 {% end %}
56 </tbody>
57 </table>
58 {% end block %}