diff options
author | eliott <eliott@cactuswax.net> | 2007-11-03 03:45:10 -0400 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-11-03 03:45:10 -0400 |
commit | 39a548fd2629f3b6383990264b2e331b3aea99fb (patch) | |
tree | f68c3156dad5f7814473ceff2461679ddf11a2e8 /templates/public/irc.html |
Initial import for public release...
Special Note
Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd!
Diffstat (limited to 'templates/public/irc.html')
-rw-r--r-- | templates/public/irc.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/templates/public/irc.html b/templates/public/irc.html new file mode 100644 index 00000000..cbd00daa --- /dev/null +++ b/templates/public/irc.html @@ -0,0 +1,39 @@ +{% extends "base.html" %} + +{% block content %} +<div class="box"> + <h2 class="title">IRC Channels</h2> + <br /><br /> + <p>You can find Arch-related discussion on the following IRC channels. + All channels are on <strong>irc.freenode.net</strong></p> + <table cellspacing="20"> + <tr> + <td><strong>#archlinux</strong></td> + <td>The main discussion channel, mostly in English</td> + </tr><tr> + <td><strong>#archlinux-bugs<strong></td> + <td>Bug-centric discussion</td> + </tr><tr> + <td><strong>#archlinuxfr</strong></td> + <td>Discussion (French)</td> + </tr><tr> + <td><strong>#archlinux.de</strong></td> + <td>Discussion (German)</td> + </tr><tr> + <td><strong>#archlinux.se</strong></td> + <td>Discussion (Swedish)</td> + </tr><tr> + <td><strong>#archlinux.dk</strong></td> + <td>Discussion (Danish)</td> + </tr><tr> + <td><strong>#archlinux-es</strong></td> + <td>Discussion (Spanish)</td> + </tr><tr> + <td><strong>#archlinux.br</strong></td> + <td>Discussion (Brazilian Community)</td> + </tr> + </table> +</div> +<br /><br /> +{% endblock %} + |