summaryrefslogtreecommitdiffstats
path: root/templates/public/moreforums.html
diff options
context:
space:
mode:
authorIsmael Carnales <icarnales@gmail.com>2009-10-30 19:56:21 +0100
committerIsmael Carnales <icarnales@gmail.com>2009-11-10 01:24:37 +0100
commit79f00ef686e0597cb197ed67ba1462aa60a530bb (patch)
treefa27253b023f1cd6ec9f1d3fd79d0ee6bd727aaa /templates/public/moreforums.html
parentce662e0e0cdb66a7425bfc55bc7342cb152d5e4b (diff)
downloadarchweb-79f00ef686e0597cb197ed67ba1462aa60a530bb.tar.gz
archweb-79f00ef686e0597cb197ed67ba1462aa60a530bb.tar.xz
"imported" public app files from archweb_pub
Diffstat (limited to 'templates/public/moreforums.html')
-rw-r--r--templates/public/moreforums.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/templates/public/moreforums.html b/templates/public/moreforums.html
new file mode 100644
index 0000000..91ab420
--- /dev/null
+++ b/templates/public/moreforums.html
@@ -0,0 +1,37 @@
+{% extends "base.html" %}
+{% block title %}Arch Linux - International Communities{% endblock %}
+{% block content %}
+<div class="box">
+ <h2 class="title">International Communities</h2>
+ <br /><br />
+ <p>
+ <a href="http://www.archlinux.org/">www.archlinux.org</a> is the home of
+ the official Arch Linux website, forums, and wiki. However, several
+ unofficial community-run sites are available for international users who
+ would rather communicate in their own language. You can find a list of
+ these communities below.
+ </p>
+ <p>
+ Please note that the official <a href="http://wiki.archlinux.org/">Wiki</a>
+ also supports internationalized content. In addition, we have <a
+ href="http://bbs.archlinux.org/viewforum.php?id=30">a forum</a> where
+ you can post in your native language. These tools can be used in addition
+ to, in parallel with, or as a part of the international communities listed
+ below.
+ </p>
+ <table cellspacing="20">
+ {% for forum in forum_list %}
+ <tr>
+ <td width="200">{{ forum.language }}</td>
+ <td><a href="{{ forum.url }}">{{ forum.name }}</a></td>
+ </tr>
+ {% endfor %}
+ </table>
+ <br />
+ If you host a community you would like linked on this page, please open a
+ <a href="http://bugs.archlinux.org/">Bug Ticket</a> with the category "web
+ site", and a relevant description.
+</div>
+<br /><br />
+{% endblock %}
+