summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/templates/pages/get-involved/irc-channels/all-channels.html')
-rw-r--r--python/templates/pages/get-involved/irc-channels/all-channels.html73
1 files changed, 73 insertions, 0 deletions
diff --git a/python/templates/pages/get-involved/irc-channels/all-channels.html b/python/templates/pages/get-involved/irc-channels/all-channels.html
new file mode 100644
index 0000000..7ebb982
--- /dev/null
+++ b/python/templates/pages/get-involved/irc-channels/all-channels.html
@@ -0,0 +1,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> \ No newline at end of file