]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/static/support.html
accounts: Use c attribute to store the country
[ipfire.org.git] / src / templates / static / support.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Support") }}{% end block %}
4
5 {% block container %}
6 <section>
7 <div class="container">
8 <div class="row">
9 <div class="col col-lg-6">
10 <h1 class="display-2">{{ _("Support") }}</h1>
11
12 <p>
13 If you have any questions, IPFire has an active support community
14 and is also backed by a professional development team
15 </p>
16 </div>
17 </div>
18 </div>
19 </section>
20
21 <section class="inverse">
22 <div class="container">
23 <div class="row justify-content-between flex-md-row-reverse">
24 <div class="col-12 col-md-3 d-flex align-items-center justify-content-center justify-content-md-end">
25 <i class="fas fa-pen-alt icon-large my-5"></i>
26 </div>
27
28 <div class="col-12 col-md-7">
29 <h1>{{ _("Wiki") }}</h1>
30
31 <p>
32 The IPFire Wiki is the prime resource for everything
33 you need to know about IPFire.
34 There is almost nothing that cannot be found there.
35 </p>
36
37 <p>
38 The wiki is written by the community.
39 Everyone can join and improve it.
40 </p>
41
42 <a class="btn btn-primary" href="https://wiki.ipfire.org/">
43 {{ _("Go to Wiki") }}
44 </a>
45 </div>
46 </div>
47 </div>
48 </section>
49
50 <section>
51 <div class="container">
52 <div class="row justify-content-between">
53 <div class="col-12 col-md-3 d-flex align-items-center justify-content-center justify-content-md-start">
54 <span class="fas fa-hands-helping icon-large my-5"></span>
55 </div>
56
57 <div class="col-12 col-md-7">
58 <h1>{{ _("Community") }}</h1>
59
60 <p>
61 Talk to the IPFire Community on our community portal.
62 </p>
63
64 <p>
65 Ask about how to get started with IPFire, how you can
66 contribute to the project, and what else you always
67 wanted to know about IPFire...
68 </p>
69
70 <a class="btn btn-secondary" href="https://community.ipfire.org/">
71 {{ _("Go to Community") }}
72 </a>
73 </div>
74 </div>
75 </div>
76 </section>
77
78 <section class="inverse">
79 <div class="container">
80 <div class="row justify-content-between flex-md-row-reverse">
81 <div class="col-12 col-md-4 text-center text-md-right">
82 <img class="img-fluid w-100 my-5" src="{{ static_url("img/lightningwirelabs-logo.svg") }}"
83 alt="{{ _("Lightning Wire Labs") }}">
84 </div>
85
86 <div class="col-12 col-md-7">
87 <h1>{{ _("Get Professional Support") }}</h1>
88
89 <p>
90 <a class="text-lwl" href="https://www.lightningwirelabs.com/">Lightning Wire Labs</a>
91 provides professional support services for companies that use IPFire.
92 </p>
93
94 <p>
95 The team of developers implements custom solutions based on IPFire and
96 carries out development of new features.
97 They will help you with designing a secure network that is tailored to
98 the specific needs of your business and support you with the integration
99 of IPFire.
100 </p>
101
102 <a class="btn btn-lwl mb-5" href="https://www.lightningwirelabs.com/">
103 {{ _("Go to Website") }}
104 </a>
105 </div>
106 </div>
107 </div>
108 </section>
109
110 <section>
111 <div class="container">
112 <div class="row justify-content-between">
113 <div class="col-12 col-md-3 d-flex align-items-center justify-content-center justify-content-md-start">
114 <span class="fas fa-comments icon-large my-5"></span>
115 </div>
116
117 <div class="col-12 col-md-7">
118 <h1>{{ _("Chat") }}</h1>
119
120 <p>
121 You can chat live with other IPFire users and developers.
122 To join our chat room, point your XMPP client to:
123 </p>
124
125 <a class="btn btn-light" href="xmpp:ipfire@conference.ipfire.org?join">
126 ipfire@conference.ipfire.org
127 </a>
128 </div>
129 </div>
130 </div>
131 </section>
132 {% end block %}