]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/index.html
index: Update design of footer
[ipfire.org.git] / src / templates / index.html
CommitLineData
081800ca 1{% extends "base.html" %}
81675874 2
a1bf2f6c 3{% block head %}
18c4ff95 4 <meta name="description" content="{{ _("IPFire is a hardened, versatile, state-of-the-art Open Source firewall based on Linux.") }}" />
a7d34bc5 5 <link rel="alternate" type="application/atom+xml" title="RSS" href="https://blog.ipfire.org/feed.xml" />
a1bf2f6c
MT
6{% end block %}
7
60b0917c
MT
8{% block title %}{{ _("Welcome to IPFire") }}{% end block %}
9
10{% block container %}
3a5b57be
MT
11 {% if latest_release %}
12 <div class="bg-light">
13 <div class="container text-center small py-2">
14 {{ _("Latest Release: %(release)s from %(when)s") \
15 % { "release" : latest_release.name, "when" : locale.format_day(latest_release.date, dow=False) } }}
16
17 {% if latest_release.blog %}
18 &nbsp;
19
20 <a class="text-dark font-weight-bold" href="https://blog.ipfire.org/post/{{ latest_release.blog.slug }}">
21 {{ _("Read More") }}
22 </a>
23 {% end %}
24 </div>
25 </div>
26 {% end %}
27
2e7764cb
MT
28 <div class="bg-brand">
29 <div class="container">
30 <h1 class="display-1">{{ _("More Than A Firewall") }}</h1>
5ca77647 31 <h4 class="font-weight-normal">Customisable, easy to configure, and the leading example</h4>
2e7764cb
MT
32 </div>
33 </div>
34
a3f1d400
MT
35 <section>
36 <div class="container">
37 <h2 class="text-center mb-5">
38 {{ _("The Open Source Firewall") }}<span class="text-primary">_</span>
39 </h2>
40
41 <div class="row">
42 <div class="col-12 col-lg-4 mb-3 text-center">
43 <h4>{{ _("The Right Choice") }}</h4>
44
45 <p class="mb-0">
46 The only open source firewall with an active community, leading the market
47 </p>
48 </div>
49
50 <div class="col-12 col-lg-4 mb-3 text-center">
51 <h4>{{ _("Free & Open") }}</h4>
52
53 <p class="mb-0">
54 Fully open source, complete freedom and for the greater good
55 </p>
56 </div>
57
58 <div class="col-12 col-lg-4 mb-3 text-center">
59 <h4>{{ _("Security") }}</h4>
60
61 <p class="mb-0">
62 Powerful system, separate applicance, a bit more text here
63 </p>
64 </div>
65 </div>
66 </div>
67 </section>
81675874 68{% end block %}