]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/index.html
index.html: restyled the page
[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.") }}" />
34472923 5 <link rel="alternate" type="application/atom+xml" title="RSS" href="/blog/feed.xml" />
a1bf2f6c
MT
6{% end block %}
7
60b0917c
MT
8{% block title %}{{ _("Welcome to IPFire") }}{% end block %}
9
10{% block container %}
3a5b57be 11 {% if latest_release %}
c8678b6e
RH
12 <section class="has-background-primary-light">
13 <div class="container">
14 <p class="has-text-centered px-2">
15 {{ _("Latest Release: %(release)s from %(when)s") \
16 % { "release" : latest_release.name, "when" : locale.format_day(latest_release.date, dow=False) } }}
17
18 {% if latest_release.blog %}
19 &nbsp;
20
21 <a class="has-text-weight-bold" href="/download/{{ latest_release.slug }}">
22 {{ _("Read More") }}
23 </a>
24 {% end %}
25 </p>
3a5b57be 26 </div>
c8678b6e 27 </section>
3a5b57be
MT
28 {% end %}
29
c8678b6e
RH
30 <section class="hero is-large is-primary" id="hero-index">
31 <div class="hero-body">
32 <div class="container">
33 <h1 class="title is-1">{{ _("More Than A Firewall") }}</h1>
34 <h5 class="title is-5">The market leader in Linux based, Open Source security with a comprehensible feature set</h5>
35 </div>
2e7764cb 36 </div>
c8678b6e 37 </section>
2e7764cb 38
c8678b6e 39 <section class="section">
a3f1d400 40 <div class="container">
c8678b6e
RH
41 <h3 class="title is-3 has-text-centered">
42 {{ _("The Open Source Firewall") }}<span class="has-text-primary">_</span>
43 </h3>
44 </div>
45 </section>
a3f1d400 46
c8678b6e
RH
47 <section class="section">
48 <div class="container">
49 <div class="columns">
50 <div class="column is-one-third has-text-centered">
51 <span class="fas fa-fire fa-4x bg-light is-primary p-3 mb-2"></span>
f16eb701 52
c8678b6e 53 <h4 class="title is-4">{{ _("The Right Choice") }}</h4>
a3f1d400
MT
54
55 <p class="mb-0">
56 The only open source firewall with an active community, leading the market
57 </p>
58 </div>
59
c8678b6e
RH
60 <div class="column is-one-third has-text-centered">
61 <span class="fas fa-terminal fa-4x bg-light text-primary p-3 mb-2"></span>
f16eb701 62
c8678b6e 63 <h4 class="title is-4">{{ _("Free & Open") }}</h4>
a3f1d400
MT
64
65 <p class="mb-0">
66 Fully open source, complete freedom and for the greater good
67 </p>
68 </div>
69
c8678b6e 70 <div class="column is-one-third has-text-centered">
f16eb701
MT
71 <span class="fas fa-shield-alt fa-4x bg-light text-primary p-3 mb-2"></span>
72
c8678b6e 73 <h4 class="title is-4">{{ _("Security") }}</h4>
a3f1d400
MT
74
75 <p class="mb-0">
76 Powerful system, separate applicance, a bit more text here
77 </p>
78 </div>
79 </div>
80 </div>
81 </section>
c98edbef 82
c8678b6e 83 <section class="section">
c98edbef 84 <div class="container">
c8678b6e
RH
85 <div class="box p-6 has-background-lwl has-text-white">
86 <div class="columns is-mobile is-vcentered">
87 <div class="column">
88 <h3 class="title is-3 has-text-white">{{ _("Appliances and Support") }}</h3>
89
90 <div class="block">
91 <p>
92 You need someone you can call when things go wrong.
93 Partnered with Lightning Wire Labs we offer applicances for enterprise
94 and XX businesses.
95 </p>
96 </div>
97
98 <div class="block">
99 <a class="button is-white has-text-lwl has-text-weight-bold" href="https://store.lightningwirelabs.com/">
100 {{ _("Go to Store") }}
101 </a>
102 </div>
c98edbef
MT
103 </div>
104
c8678b6e
RH
105 <div class="column is-narrow is-hidden-mobile has-text-centered">
106 <figure class="image m-5 is-128x128">
107 <img src="{{ static_url("img/lightningwirelabs-logo.svg") }}" alt="{{ _("Lightning Wire Labs") }}">
108 </figure>
c98edbef
MT
109 </div>
110 </div>
111 </div>
112 </div>
113 </section>
c8678b6e 114{% end block %}