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