]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/static/get-support.html
added background to support section
[people/shoehn/ipfire.org.git] / templates / static / get-support.html
1 {% extends "../base-1.html" %}
2
3 {% block title %}{{ _("Get Support") }}{% end block %}
4
5 {% block container %}
6 <section id="support" class="content-section">
7 <div class="container">
8 <div class="row">
9 <section class="features-content col-12">
10 <h2 class="display-2 text-center">{{ _("Get Support") }}</h2>
11
12 <div class="row m-5">
13 <div class="col-md-4 text-center">
14 <a href="//wiki.ipfire.org" class="link-normal">
15 <span class="fa fa-4x fa-pencil-square-o"></span>
16 <h3>{{ _("Documentation") }}</h3>
17 </a>
18 </div>
19
20 <div class="col-md-4 text-center">
21 <a href="//forum.ipfire.org" class="link-normal">
22 <span class="fa fa-4x fa-users"></span>
23 <h3>{{ _("Forums") }}</h3>
24 </a>
25 </div>
26
27 <div class="col-md-4 text-center">
28 <a href="/chat" class="link-normal">
29 <span class="fa fa-4x fa-wechat"></span>
30 <h3>{{ _("Chat") }}</h3>
31 </a>
32 </div>
33 </div>
34 </section>
35 </div>
36 </div>
37 </section>
38
39 <div class="container mt-6">
40 <div class="row">
41 <section id="professinal" class="col-12">
42 <h3 class="headline mb-5">{{ _("Get Professional Support") }}</h3>
43
44 <p class="lead">
45 {% if lang == "de" %}
46 <a href="//www.lightningwirelabs.com">Lightning Wire Labs</a>
47 bietet professionelle Supportdienstleistungen rund um IPFire für
48 Unternehmen an.
49 {% else %}
50 <a href="//www.lightningwirelabs.com">Lightning Wire Labs</a>
51 provides professional support services for companies that use IPFire.
52 {% end %}
53 </p>
54
55 <p class="lead">
56 {% if lang == "de" %}
57 Das Entwicklerteam erarbeitet individuelle Lösungen basierend auf
58 IPFire und neue Funktionen. Bei der Planung von sicheren Netzwerken
59 und der Integration von IPFire stehen sie unterstützend zur Seite.
60 {% else %}
61 Their team of developers implements custom solutions based on IPFire
62 and carries out development of new features. They will help you
63 with designing a secure network that is tailored to the specific
64 needs of your business and support you with the integration of
65 IPFire.
66 {% end %}
67 </p>
68
69 <div class="d-flex justify-content-center">
70 <a class="btn btn-lg btn-white mt-5" href="//www.lightningwirelabs.com">
71 {{ _("Go to Lightning Wire Labs") }}
72 </a>
73 </div>
74 </section>
75 </div>
76 </div>
77
78 {% end block %}