summaryrefslogtreecommitdiff
blob: 7ebb982eb60acd3568d07e3b38e35dced52f664d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
nav1: get-involved
nav2: irc
nav3: irc-all-channels
title: 'All IRC Channels'
---

<p>
  This page offers a listing of all official IRC channels we maintain.
</p>

<div class="alert alert-danger">
  <strong>Before joining a channel…</strong>
  <br>
  …please be sure that you have taken note of our <a href="index.html" class="alert-link">IRC guidelines</a>.
  Also, do read the channel's topic, it might just answer your question already.
</div>

<h2>Primary Support Channels</h2>

<div class="table-responsive">
  <table class="table table-striped">
    <tr>
      <th>Channel</th>
      <th>Description</th>
    </tr>
    {% for channel in site.data.irc.primary %}
      {% include partials/irc-channel.html %}
    {% endfor %}
  </table>
</div>

<h2>Architecture/Platform Support Channels</h2>

<div class="table-responsive">
  <table class="table table-striped">
    <tr>
      <th>Channel</th>
      <th>Description</th>
    </tr>
    {% for channel in site.data.irc.arch %}
      {% include partials/irc-channel.html %}
    {% endfor %}
  </table>
</div>

<h2>General and Development Channels</h2>

<div class="table-responsive">
  <table class="table table-striped">
    <tr>
      <th>Channel</th>
      <th>Description</th>
    </tr>
    {% for channel in site.data.irc.general %}
      {% include partials/irc-channel.html %}
    {% endfor %}
  </table>
</div>

<h2>International Channels</h2>

<div class="table-responsive">
  <table class="table table-striped">
    <tr>
      <th>Channel</th>
      <th>Description</th>
    </tr>
    {% for channel in site.data.irc.international %}
      {% include partials/irc-channel.html %}
    {% endfor %}
  </table>
</div>