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