]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/downloads-index.html
Bootstrap 4 migration: downloads.dev.ipfire.org
[people/shoehn/ipfire.org.git] / templates / downloads-index.html
CommitLineData
7771acea 1{% extends "base-1.html" %}
940227cb 2
7771acea 3{% block title %}{{ _("Download Center") }}{% end block %}
940227cb 4
60024cc8 5{% block body %}
6b18ec4c
SH
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") }}">
7771acea 13
6b18ec4c
SH
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>
7771acea 26 </div>
6b18ec4c
SH
27
28 <div class="row">
29 <div class="col">
30 <h4>{{ _("Available releases") }}</h4>
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-warning">{{ _("Development") }}</span>
51 {% end %}
52 </td>
53 <td>{{ locale.format_date(release.date, shorter=True) }}</td>
54 </tr>
7771acea 55 {% end %}
6b18ec4c
SH
56 </tbody>
57 </table>
58 </div>
59 </div>
60 </section>
61</div>
62
940227cb 63{% end block %}