]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/static/chat.html
Bootstrap 4 migration: chat
[people/shoehn/ipfire.org.git] / templates / static / chat.html
CommitLineData
60024cc8
MT
1{% extends "../base-1.html" %}
2
3{% block title %}{{ _("Chat") }}{% end block %}
9b5ac075 4
60b0917c 5{% block container %}
6a27a7ca
SH
6<div class="container">
7 <section class="features-content col-12">
8 <h2 class="display-2 text-center">{{ _("Chat") }}</h2>
9
10 <div class="row mb-5">
11 <div class="col-md-8 offset-md-2 text-center">
60b0917c
MT
12 {% if lang == "de" %}
13 <p class="lead">
14 Wer Fragen rund um IPFire hat, findet in unserem Channel rund
15 um die Uhr Ansprechpartner, die Hilfestellung zu allen möglichen
16 Themen geben können.
17 </p>
18 <p>
19 Dies ist gleichzeitig eine tolle Möglichkeit, neue Kontakte zu
20 knüpfen oder sich einfach zu unterhalten.
21 </p>
22 {% else %}
23 <p class="lead">
24 On the IPFire channel, you will find people who can help you
25 with your questions about IPFire.
26 </p>
27 <p>
28 This is a good chance to meet people involved in the project
29 or just have a chat.
30 </p>
31 {% end %}
32 </div>
6a27a7ca
SH
33 </div>
34
35 <div class="row">
36 <div class="col-md-3 offset-md-2">
60b0917c
MT
37 <h4>
38 <a href="xmpp:ipfire@conference.ipfire.org">
39 {{ _("Jabber") }}
40 </a>
41 </h4>
91071f8f 42
60b0917c
MT
43 <dl class="dl-horizontal">
44 <dt>{{ _("Room") }}</dt>
45 <dd>ipfire</dd>
91071f8f 46
60b0917c
MT
47 <dt>{{ _("Server") }}</dt>
48 <dd>conference.ipfire.org</dd>
49 </dl>
91071f8f 50
60b0917c
MT
51 <p class="ac">
52 <small>
6a27a7ca 53 <a href="//planet.ipfire.org/post/opening-the-ipfire-jabber-server">
60b0917c
MT
54 {{ _("Need a Jabber account?") }}
55 </a>
56 </small>
57 </p>
6a27a7ca 58 </div>
91071f8f 59
6a27a7ca 60 <div class="col-md-3 offset-md-2">
60b0917c 61 <h4>{{ _("IRC") }}</h4>
91071f8f 62
60b0917c
MT
63 <dl class="dl-horizontal">
64 <dt>{{ _("Channel") }}</dt>
65 <dd>#ipfire</dd>
91071f8f 66
60b0917c
MT
67 <dt>{{ _("Server") }}</dt>
68 <dd>irc.freenode.net</dd>
69 </dl>
91071f8f 70
60b0917c
MT
71 {% if lang == "de" %}
72 <p class="ac">
73 Du kannst dich mit jedem beliebigen IRC-Client mit dem Server
74 und Channel verbinden oder
6a27a7ca 75 <a href="//webchat.freenode.net/?channels=ipfire">
60b0917c
MT
76 diesen Web-Client
77 </a> benutzen.
78 </p>
79 {% else %}
80 <p class="ac">
81 You can use any IRC client to connect to the server and channel
82 above or
6a27a7ca 83 <a href="//webchat.freenode.net/?channels=ipfire">
60b0917c
MT
84 use a web client
85 </a>.
86 </p>
87 {% end %}
88 </div>
89 </div>
90 </section>
6a27a7ca
SH
91</div>
92
60024cc8 93{% end block %}