]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/download-splash.html
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / templates / download-splash.html
1 {% extends "base-1.html" %}
2
3 {% block title %}{{ _("Thanks for downloading IPFire") }}{% end block %}
4
5 {% block container %}
6 <section class="container content-section text-center">
7 <div class="page-header">
8 <h1>{{ _("Thanks for downloading IPFire") }}</h1>
9 </div>
10
11 <p class="lead">
12 {% if lang == "de" %}
13 Der Download beginnt in Kürze.
14 Falls nicht, auf den untenstehenden Link klicken.
15 {% else %}
16 Your download should begin in a few seconds.
17 If not, click the link below.
18 {% end %}
19 </p>
20
21 <p class="download-path"></p>
22 </section>
23
24 <section class="container content-section text-center">
25 <div class="row">
26 <div class="col-lg-4 col-md-4">
27 <a class="link-normal" href="http://wiki.ipfire.org/en/installation/start">
28 <span class="fa fa-4x fa-terminal"></span>
29 <h3>{{ _("How to install IPFire") }}</h3>
30 </a>
31 </div>
32
33 <div class="col-lg-4 col-md-4">
34 <a class="link-normal" href="//www.ipfire.org/donate">
35 <span class="fa fa-4x fa-heart text-danger"></span>
36 <h3>{{ _("Donate") }}</h3>
37 </a>
38 </div>
39
40 <div class="col-lg-4 col-md-4">
41 <a class="link-normal" href="http://www.ipfire.org/get-support">
42 <span class="fa fa-4x fa-question"></span>
43 <h3>{{ _("Get Support") }}</h3>
44 </a>
45 </div>
46 </div>
47 </section>
48 {% end %}