diff options
author | Ismael Carnales <icarnales@gmail.com> | 2009-10-30 16:56:21 -0200 |
---|---|---|
committer | Ismael Carnales <icarnales@gmail.com> | 2009-11-09 22:24:37 -0200 |
commit | 79f00ef686e0597cb197ed67ba1462aa60a530bb (patch) | |
tree | fa27253b023f1cd6ec9f1d3fd79d0ee6bd727aaa /templates/public/irc.html | |
parent | ce662e0e0cdb66a7425bfc55bc7342cb152d5e4b (diff) |
"imported" public app files from archweb_pub
Diffstat (limited to 'templates/public/irc.html')
-rw-r--r-- | templates/public/irc.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/templates/public/irc.html b/templates/public/irc.html new file mode 100644 index 00000000..ce69630a --- /dev/null +++ b/templates/public/irc.html @@ -0,0 +1,63 @@ +{% extends "base.html" %} +{% block title %}Arch Linux - IRC Channels{% endblock %} +{% 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>#archlinux64</strong></td> + <td>x86_64 specific discussion channel, mostly in English</td> + </tr><tr> + <td><strong>#archlinux-pacman</strong></td> + <td>Pacman development and discussion</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)</td> + </tr><tr> + <td><strong>#archlinux.it</strong></td> + <td>Discussion (Italian)</td> + </tr><tr> + <td><strong>#archlinux.ro</strong></td> + <td>Discussion (Romanian)</td> + </tr><tr> + <td><strong>#archlinux.tr</strong></td> + <td>Discussion (Turkish)</td> + </tr><tr> + <td><strong>#archlinux.hu</strong></td> + <td>Discussion (Hungarian)</td> + </tr><tr> + <td><strong>#archlinux-pl</strong></td> + <td>Discussion (Polish)</td> + </tr><tr> + <td><strong>#archlinux-offtopic</strong></td> + <td>Random offtopic discussions.</td> + </tr> + </table> +</div> +<br /><br /> +{% endblock %} + |