]> git.ipfire.org Git - ipfire.org.git/blob - templates/downloads-index.html
.gitignore: Add .vscode
[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="container">
7 <section class="features-content col-12">
8 <h2 class="display-2 text-center">{{ _("IPFire Download Center") }}</h2>
9
10 <div class="row">
11 <div class="col-md-12">
12 <img class="pull-right" src="{{ static_url("images/box_ipfire.png") }}" alt="{{ _("CD-Box") }}">
13
14 <p>
15 {{ _("Welcome to the downloads section of the IPFire project.") }}
16 {{ _("You will find all published releases of IPFire for download.") }}
17 </p>
18 </div>
19 </div>
20
21 <div class="row">
22 <div class="col">
23 <h4>{{ _("Available releases") }}</h4>
24
25 <table class="table table-striped table-hover">
26 <thead>
27 <tr>
28 <th>{{ _("Release") }}</th>
29 <th>{{ _("Release type") }}</th>
30 <th>{{ _("Release date") }}</th>
31 </tr>
32 </thead>
33 <tbody>
34 {% for release in releases %}
35 <tr>
36 <td>
37 <a href="/release/{{ release.sname }}">{{ release.name }}</a>
38 </td>
39 <td>
40 {% if release.stable %}
41 <span class="label label-success">{{ _("Stable") }}</span>
42 {% else %}
43 <span class="label label-warning">{{ _("Development") }}</span>
44 {% end %}
45 </td>
46 <td>{{ locale.format_date(release.date, shorter=True) }}</td>
47 </tr>
48 {% end %}
49 </tbody>
50 </table>
51 </div>
52 </div>
53 </section>
54 </div>
55
56 {% end block %}