]> git.ipfire.org Git - ipfire.org.git/blob - templates/static/chat.html
.gitignore: Add .vscode
[ipfire.org.git] / templates / static / chat.html
1 {% extends "../base-1.html" %}
2
3 {% block title %}{{ _("Chat") }}{% end block %}
4
5 {% block container %}
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">
12 <p class="lead">
13 On the IPFire channel, you will find people who can help you
14 with your questions about IPFire.
15 </p>
16 <p>
17 This is a good chance to meet people involved in the project
18 or just have a chat.
19 </p>
20 </div>
21 </div>
22
23 <div class="row">
24 <div class="col-md-3 offset-md-2">
25 <h4>
26 <a href="xmpp:ipfire@conference.ipfire.org">
27 {{ _("Jabber") }}
28 </a>
29 </h4>
30
31 <dl class="dl-horizontal">
32 <dt>{{ _("Room") }}</dt>
33 <dd>ipfire</dd>
34
35 <dt>{{ _("Server") }}</dt>
36 <dd>conference.ipfire.org</dd>
37 </dl>
38
39 <p class="ac">
40 <small>
41 <a href="//planet.ipfire.org/post/opening-the-ipfire-jabber-server">
42 {{ _("Need a Jabber account?") }}
43 </a>
44 </small>
45 </p>
46 </div>
47
48 <div class="col-md-3 offset-md-2">
49 <h4>{{ _("IRC") }}</h4>
50
51 <dl class="dl-horizontal">
52 <dt>{{ _("Channel") }}</dt>
53 <dd>#ipfire</dd>
54
55 <dt>{{ _("Server") }}</dt>
56 <dd>irc.freenode.net</dd>
57 </dl>
58
59 <p class="ac">
60 You can use any IRC client to connect to the server and channel
61 above or
62 <a href="//webchat.freenode.net/?channels=ipfire">
63 use a web client
64 </a>.
65 </p>
66 </div>
67 </div>
68 </section>
69 </div>
70
71 {% end block %}