summaryrefslogtreecommitdiffstats
path: root/templates/public
diff options
context:
space:
mode:
Diffstat (limited to 'templates/public')
-rw-r--r--templates/public/about.html82
-rw-r--r--templates/public/art.html28
-rw-r--r--templates/public/blank.html10
-rw-r--r--templates/public/cvs.html48
-rw-r--r--templates/public/denied.html11
-rw-r--r--templates/public/developers.html67
-rw-r--r--templates/public/donate.html59
-rw-r--r--templates/public/download.html74
-rw-r--r--templates/public/index.html174
-rw-r--r--templates/public/index.html.bak151
-rw-r--r--templates/public/irc.html39
-rw-r--r--templates/public/moreforums.html78
-rw-r--r--templates/public/press.html33
-rw-r--r--templates/public/projects.html36
14 files changed, 890 insertions, 0 deletions
diff --git a/templates/public/about.html b/templates/public/about.html
new file mode 100644
index 0000000..0712b5d
--- /dev/null
+++ b/templates/public/about.html
@@ -0,0 +1,82 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <h2 class="title">About Arch Linux</h2>
+
+ <p>
+ Arch Linux is a general purpose linux distribution that can be molded to
+ do just about anything. It is fast, lightweight, flexible, and most of the
+ parts under the hood are quite simple to understand and tweak, which can
+ make it a good distro to "learn the ropes" on. We do not provide any
+ configuration helper utilities (ie, you won't find <i>linuxconf</i> in
+ here) so you will quickly become very proficient at configuring your system
+ from the shell commandline.
+ </p>
+
+ <p>
+ Arch Linux uses i686-optimized packages which gives us improved
+ performance over some of our i386-optimized cousins. This means that Arch
+ Linux will only run on a Pentium II processor or higher. We try to stay
+ fairly bleeding edge, and typically have the latest stable versions of
+ software.
+ </p>
+
+ <p>
+ Arch Linux uses the <a href='http://www.archlinux.org/pacman'>Pacman</a>
+ package manager, which couples a simple binary package format with an
+ easy-to-use build system, allowing the users to easily manage and customize
+ their packages, whether they be official Arch packages or the user's own
+ homegrown ones. The repository system allows users to build and maintain
+ their own custom package repositories, which encourages community growth and
+ contribution.
+ </p>
+
+ <p>
+ Pacman can keep a system up to date by synchronizing package lists with
+ the master server, making it a breeze for the security-conscious system
+ administrator to maintain. This server/client model also allows you to
+ download/install packages with a simple command, complete with all required
+ dependencies (similar to Debian's apt-get).
+ </p>
+
+ <p>
+ Arch's official package set is fairly streamlined, but we supplement this
+ with a larger, more complete "extra" repository that contains a lot of the
+ stuff that never made it into our core package set. This repository is
+ constantly growing with the help of packages submitted from our strong
+ community.
+ </p>
+
+ <p>
+ Arch Linux does not provide any official support, but you will find a lot
+ of helpful people on our IRC channel and on our <a
+ href='http://bbs.archlinux.org'>user forums</a>. Chances are that some other
+ Archer has had the same problem/question as you and it's already been
+ answered. Ask around!
+ </p>
+
+ <p>
+ Arch Linux uses a "rolling release" system which works like this: We have
+ two versions of our core package set at any given time, <b>Current</b> and
+ <b>Release</b>. The Current repository always contains the latest and
+ greatest versions of packages. As soon as a package is updated it is part of
+ the Current repository, so this is the one to follow if you want to stay very
+ up to date. The Release repository follows the semi-regular snapshot
+ releases and does not update until the next snapshot/iso has been released.
+ For example, the Release repository will point to all packages on the 0.5 ISO
+ until we release 0.6; then it will point to 0.6 packages until 0.7 is
+ released. This is useful if you only want to update your system when a new
+ release is available.
+ </p>
+
+ <p>
+ So, to sum up: Arch Linux is a workhorse distribution designed to fit the
+ needs of the competent linux user. We strive to make it both powerful and
+ easy to manage, making it an ideal distro for servers and workstations. Take
+ it in any direction you like.
+ </p>
+</div>
+<br /><br />
+{% endblock %}
+
diff --git a/templates/public/art.html b/templates/public/art.html
new file mode 100644
index 0000000..0fab30a
--- /dev/null
+++ b/templates/public/art.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+
+{% block content %}
+<br /><br />
+<div class="box">
+ <h2 class="title">Arch Linux Logos</h2>
+ <br /><br />
+ <table id="art" width="90%">
+ <tr>
+ <td><img src="/logos/archblue2.png"><br><a href="/logos/archlinux_logo_1.svg">SVG</a></td>
+ <td><a href="/logos/archlinux_logo_aqua.png"><img src="/logos/sml-archlinux_logo_aqua.png" border=0></a><br><a href="/logos/archlinux_logo_aqua.svg">SVG</a></td>
+ </tr><tr>
+ <td><img src="/logos/128x128/arch_linux_blue.png"><br><a href="/logos/scalable/arch_linux_blue.svg">SVG</a></td>
+ <td><img src="/logos/128x128/arch_linux_white.png"><br><a href="/logos/scalable/arch_linux_white.svg">SVG</a></td>
+ </tr><tr>
+ <td><img src="/logos/archblue.png"><br><a href="/logos/archlinux_logo_2.svg">SVG</a></td>
+ <td><a href="/logos/archstar.jpg"><img src="/logos/sml-archstar.jpg" border="0"></a></td>
+ </tr><tr>
+ <td><a href="/logos/cdlabel-0.8-2.svg"><img src="/logos/sml-cdlabel-0.8-2.png" border="0"></a></td>
+ <td><a href="/logos/cdlabel-0.8.svg"><img src="/logos/sml-cdlabel-0.8.png" border="0"></a></td>
+ </tr><tr>
+ <td colspan="2"><img src="/logos/archbannerglass3.jpg"></td>
+ </tr>
+ </table>
+</div>
+<br /><br />
+{% endblock %}
+
diff --git a/templates/public/blank.html b/templates/public/blank.html
new file mode 100644
index 0000000..d1e7b71
--- /dev/null
+++ b/templates/public/blank.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <h2 class="title">Download Arch Linux</h2>
+ <br /><br />
+</div>
+<br /><br />
+{% endblock %}
+
diff --git a/templates/public/cvs.html b/templates/public/cvs.html
new file mode 100644
index 0000000..715d00d
--- /dev/null
+++ b/templates/public/cvs.html
@@ -0,0 +1,48 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="greybox" style="text-align:center">
+ You can access all of our PKGBUILD files from the
+ <a href="http://cvs.archlinux.org">cvsweb</a> interface.
+</div>
+<br /><br />
+<div class="box">
+ <h2 class="title">CVS Repositories</h2>
+ <br /><br />
+ Anonymous CVS access is also available. Use <i><u>anonymous</u></i> as the
+ username and password.<br /><br />
+ <ol class="instructions">
+ <li>
+ Set CVSROOT to the repository you wish to access:<br /><br />
+ <blockquote class="code">
+# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-core<br /><br />
+OR<br /><br />
+# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-extra<br /><br />
+OR<br /><br />
+# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-unstable<br /><br />
+ </blockquote>
+ <br /><br />
+ </li>
+ <li>
+ Login:<br /><br />
+ <blockquote class="code">
+# touch ~/.cvspass<br />
+# cvs login<br />
+Logging in to :pserver:anonymous@cvs.archlinux.org:2401/home/cvs-core<br />
+CVS password: anonymous<br />
+ </blockquote>
+ <br /><br />
+ </li>
+ <li>
+ Check out the repository:<br /><br />
+ <blockquote class="code">
+# cvs -z3 co core<br /><br />
+OR<br /><br />
+# cvs -z3 co extra<br />
+ </blockquote>
+ </li>
+ </ol>
+</div>
+<br /><br />
+{% endblock %}
+
diff --git a/templates/public/denied.html b/templates/public/denied.html
new file mode 100644
index 0000000..c59c0f7
--- /dev/null
+++ b/templates/public/denied.html
@@ -0,0 +1,11 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <br /><br />
+ Sorry, you don't have sufficient privileges to perform this function.
+ <br /><br />
+</div>
+<br /><br />
+{% endblock %}
+
diff --git a/templates/public/developers.html b/templates/public/developers.html
new file mode 100644
index 0000000..6b1fe8b
--- /dev/null
+++ b/templates/public/developers.html
@@ -0,0 +1,67 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <h2 class="title">Arch Linux Core Developers</h2>
+ <br /><br />
+ <div id="devlist">
+ {% for dev in devs %}
+ <a href="#{{ dev.first_name}}">{{ dev.first_name }}</a> &nbsp;
+ {% endfor %}
+ </div><br /><br />
+
+ <table class="center" cellpadding="20">
+ {% for dev in devs %}
+ <tr>
+ <td class="devpic">
+ <img src="{{ dev.get_profile.get_picture_url }}" height="175" width="175" style="border:1px solid black">
+ </td><td>
+ <a name="{{ dev.first_name }}" />
+ <table class="deventry" cellspacing="5">
+ <tr>
+ <th>Name:</th>
+ <td>{{ dev.get_full_name }}</td>
+ </tr><tr>
+ <th>Alias:</th>
+ <td>{{ dev.get_profile.alias }}</td>
+ </tr><tr>
+ <th>Email:</th>
+ <td>{{ dev.get_profile.public_email }}</td>
+ </tr><tr>
+ <th>Other Contact:</th>
+ <td>{{ dev.get_profile.other_contact }}</td>
+ </tr><tr>
+ <th>Roles:</th>
+ <td>{{ dev.get_profile.roles }}<br />
+ </td>
+ </tr><tr>
+ <th>Website:</th>
+ <td>{{ dev.get_profile.website }}</td>
+ </tr><tr>
+ <th>Occupation:</th>
+ <td>{{ dev.get_profile.occupation }}</td>
+ </tr><tr>
+ <th>YOB:</th>
+ <td>{% if dev.get_profile.yob %}{{ dev.get_profile.yob }}{% else %}&nbsp;{% endif %}</td>
+ </tr><tr>
+ <th>Location:</th>
+ <td>{{ dev.get_profile.location }}</td>
+ </tr><tr>
+ <th>Languages:</th>
+ <td>{{ dev.get_profile.languages }}</td>
+ </tr><tr>
+ <th>Interests:</th>
+ <td>{{ dev.get_profile.interests }}</td>
+ </tr><tr>
+ <th>Favorite Distros:</th>
+ <td>{{ dev.get_profile.favorite_distros }}</td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ {% endfor %}
+ </table>
+</div>
+<br /><br />
+{% endblock %}
+
diff --git a/templates/public/donate.html b/templates/public/donate.html
new file mode 100644
index 0000000..bdb9ade
--- /dev/null
+++ b/templates/public/donate.html
@@ -0,0 +1,59 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <h2 class="title">Donate to Arch Linux</h2>
+ <p>
+ Arch Linux survives because of the tireless efforts of many people in
+ the community and the core development circle. None of us are paid for our
+ work, and we don't have the personal funds to sustain server costs ourselves.
+ </p><p>
+ There are many ways to help Arch Linux. If technical development,
+ documentation, or support aren't your strong points, you could certainly
+ help us by dropping a few bucks our way.
+ </p><p>
+ Many thanks!
+ </p>
+ <div style="text-align:center">
+ <!-- paypal code -->
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
+ <input type="hidden" name="cmd" value="_xclick">
+ <input type="hidden" name="business" value="jvinet@zeroflux.org">
+ <input type="hidden" name="item_name" value="Arch Linux">
+ <input type="hidden" name="image_url" value="/logos/arch-paypal.jpg">
+ <input type="hidden" name="no_shipping" value="1">
+ <input type="hidden" name="cn" value="Suggestions/Comments">
+ <input type="hidden" name="no_note" value="1">
+ <input type="image" src="https://www.paypal.com/images/x-click-butcc-donate.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!" style="background: transparent; border: none">
+ </form>
+ </div>
+ <br /><br />
+ <h2 class="title">Past Donors</h2>
+ <table width="100%">
+ <tr>
+ <td style="font-size:x-small;vertical-align:top">
+ {% for donor in slice1 %}
+ {{ donor.name }}<br />
+ {% endfor %}
+ </td>
+ <td style="font-size:x-small;vertical-align:top">
+ {% for donor in slice2 %}
+ {{ donor.name }}<br />
+ {% endfor %}
+ </td>
+ <td style="font-size:x-small;vertical-align:top">
+ {% for donor in slice3 %}
+ {{ donor.name }}<br />
+ {% endfor %}
+ </td>
+ <td style="font-size:x-small;vertical-align:top">
+ {% for donor in slice4 %}
+ {{ donor.name }}<br />
+ {% endfor %}
+ </td>
+ </tr>
+ </table>
+</div>
+<br /><br />
+{% endblock %}
+
diff --git a/templates/public/download.html b/templates/public/download.html
new file mode 100644
index 0000000..be840d3
--- /dev/null
+++ b/templates/public/download.html
@@ -0,0 +1,74 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <h2 class="title">Buy A CD</h2>
+ CDs are available for purchase from OSDisc.com. For each CD purchased, a
+ portion of the money goes to the Arch Linux Project.<br /><br />
+ <div style="text-align:center">
+ <a href="http://www.osdisc.com/cgi-bin/distro/index.cgi?distro=archlinux">Click here to purchase a CD</a>
+ </div>
+ <br /><br />
+
+ <h2 class="title">BitTorrent Download</h2>
+ <br /><br />
+ <div style="text-align:center">
+ <h3>Download with BitTorrent</h3>
+ If you can spare the bytes, please leave the BT client
+ open after your<br /> download is finished, so you can seed it back to others.<br />
+ <br />
+ <table class="center" cellspacing="10">
+ <tr>
+ <th>&nbsp;</th>
+ <th>CORE</th>
+ <th>FTP Install</th>
+ </tr>
+ <tr>
+ <td>i686:</td>
+ <td>
+ <a href="ftp://ftp.archlinux.org/iso/2007.08/i686/Archlinux-i686-2007.08-2.core.iso.torrent">
+ 2007.08-2
+ </a>
+ </td>
+ <td>
+ <a href="ftp://ftp.archlinux.org/iso/2007.08/i686/Archlinux-i686-2007.08-2.ftp.iso.torrent">
+ 2007.08-2
+ </a>
+ </td>
+ </tr><tr>
+ <td>x86_64:</td>
+ <td>
+ <a href="ftp://ftp.archlinux.org/iso/2007.08/x86_64/Archlinux-x86_64-2007.08-2.core.iso.torrent">
+ 2007.08-2
+ </a>
+ </td>
+ <td>
+ <a href="ftp://ftp.archlinux.org/iso/2007.08/x86_64/Archlinux-x86_64-2007.08-2.ftp.iso.torrent">
+ 2007.08-2
+ </a>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <br /><br />
+
+ <h2 class="title">HTTP/FTP Download</h2>
+ <br /><br />
+ <div style="text-align:center">
+ <h3>Download with HTTP/FTP</h3>
+ In addition to the BitTorrent links above, ISO images can also be downloaded <br /> via HTTP/FTP from the /iso/ sub-directory of mirror sites listed below.<br />
+ <br /><br />
+ <h3>Mirror Sites</h3>
+ <table class="center" cellspacing="10">
+ {% for mirror in mirrors %}
+ <tr>
+ <td style="text-align:left"><a href="{{ mirror.url }}">{{ mirror.domain }}</a></td>
+ <td style="text-align:right">{{ mirror.country }}</td>
+ </tr>
+ {% endfor %}
+ </table>
+ </div>
+</div>
+<br /><br />
+{% endblock %}
+
diff --git a/templates/public/index.html b/templates/public/index.html
new file mode 100644
index 0000000..2e0d005
--- /dev/null
+++ b/templates/public/index.html
@@ -0,0 +1,174 @@
+{% extends "base.html" %}
+
+{% block head %}
+<link rel="alternate" type="application/rss+xml" title="Arch Linux News Updates" href="/feeds/news/" />
+<link rel="alternate" type="application/rss+xml" title="Arch Linux Package Updates" href="/feeds/packages/" />
+{% endblock %}
+
+{% block content_left %}
+ <div id="about" class="box">
+ <h2>Welcome to Arch!</h2>
+ <p>
+ You've reached the website for <strong>Arch Linux</strong>, a lightweight
+ and flexible linux distribution that tries to Keep It Simple.
+ </p><p>
+ Currently we have official packages optimized for the i686 and x86-64
+ architectures. We complement our official package sets with a
+ <a href="http://aur.archlinux.org">community-operated package repository</a>
+ that grows in size and quality each and every day.
+ </p><p>
+ Our strong community is diverse and helpful, and we pride ourselves on
+ the range of skillsets and uses for Arch that stem from it. Please
+ check out our <a href="http://bbs.archlinux.org">forums</a> and
+ <a href="http://www.archlinux.org/mailman/listinfo/">mailing lists</a>
+ to get your feet wet. Also glance through our <a href="http://wiki.archlinux.org">wiki</a>
+ if you want to learn more about Arch.
+ </p><p style="text-align: right">
+ <a href="/about/"><span style="font-size:x-small">Learn more...</span></a>
+ </p>
+ </div>
+ <br /><br />
+ <div style="float:right;position:relative;bottom:-25px">
+ <a href="/feeds/news/"><img src="/media/rss.png" alt="RSS Feed" /></a>
+ </div>
+ <h2 class="title">Latest News</h2>
+ <div>
+ {% for news in news_updates %}
+ <br />
+ <span style="float:right; font-size:x-small">{{ news.postdate }}</span>
+ <h4 class="news"><a href="{{ news.get_absolute_url }}">{{ news.title }}</a></h4>
+ <p class="news">{{ news.content|striptags|truncatewords:60 }}</p>
+ <br />
+ {% endfor %}
+ <span style="float:right;font-size:x-small"><a href="/news/">More News...</a></span>
+ <br /><br />
+ </div>
+{% endblock %}
+
+{% block content_right %}
+ <div id="search">
+ <form method="get" action="/packages/search/">
+ <p>Package Search:&nbsp;&nbsp;<input type="text" name="q" size="20" maxlength="200" /></p>
+ </form>
+ </div>
+ <div id="updates">
+ <table width="100%">
+ <tr>
+ <td><h3>Recent Updates</h3></td>
+ <td style="vertical-align:top;text-align:right"><a href="/feeds/packages/"><img src="/media/rss.png" alt="RSS Feed" /></a></td>
+ </tr>
+ {% for pkg in pkg_updates %}
+ <tr>
+ <td><a href="{{ pkg.get_absolute_url }}">{{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</a></td>
+ <td style="text-align:right">{{ pkg.category.category }}</td>
+ </tr>
+ {% endfor %}
+ <tr>
+ <td colspan="2" style="text-align:right;font-size:x-small"><br /><a href="/packages/search?sort=-last_update">More...</a></td>
+ </tr>
+ </table>
+ </div>
+ <br />
+ <div class="greybox">
+ <h3>Package Repositories</h3>
+ <table id="repolinks">
+ {% for repo in repos %}
+ <tr>
+ <th><a href="/packages/?repo={{ repo.name }}">{{ repo.name }}</a></th>
+ <td>{{ repo.last_update }}</td>
+ </tr>
+ {% endfor %}
+ </table>
+ </div>
+ <br />
+ <div class="greybox">
+ <h3>Releases</h3>
+ <table id="releases">
+ <tr>
+ <td><a href="/packages/?repo=Core">2007.08-2</a></td>
+ <td><a href="/packages/?repo=Core">Don't Panic</a></td>
+ <td style="text-align:right">2007-10-07</td>
+ </tr><tr>
+ <td><a href="/packages/?repo=Current">2007.08.1</a></td>
+ <td><a href="/packages/?repo=Current">Don't Panic</a></td>
+ <td style="text-align:right">2007-09-10</td>
+ </tr><tr>
+ <td><a href="/packages/?repo=Current">2007.08</a></td>
+ <td><a href="/packages/?repo=Current">Don't Panic</a></td>
+ <td style="text-align:right">2007-08-05</td>
+ </tr><tr>
+ <td><a href="/packages/?repo=Current">2007.05</a></td>
+ <td><a href="/packages/?repo=Current">Duke</a></td>
+ <td style="text-align:right">2007-05-17</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.8.txt">0.8</a></td>
+ <td><a href="/static/pkglists/list-0.8.txt">Voodoo</a></td>
+ <td style="text-align:right">2007-03-31</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.7.2.txt">0.7.2</a></td>
+ <td><a href="/static/pkglists/list-0.7.2.txt">Gimmick</a></td>
+ <td style="text-align:right">2006-05-23</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.7.1.txt">0.7.1</a></td>
+ <td><a href="/static/pkglists/list-0.7.1.txt">Noodle</a></td>
+ <td style="text-align:right">2006-01-05</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.7.txt">0.7</a></td>
+ <td><a href="/static/pkglists/list-0.7.txt">Wombat</a></td>
+ <td style="text-align:right">2005-01-24</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.6.txt">0.6</a></td>
+ <td><a href="/static/pkglists/list-0.6.txt">Widget</a></td>
+ <td style="text-align:right">2004-03-01</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.5.txt">0.5</a></td>
+ <td><a href="/static/pkglists/list-0.5.txt">Nova</a></td>
+ <td style="text-align:right">2003-07-21</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.4.txt">0.4</a></td>
+ <td><a href="/static/pkglists/list-0.4.txt">Dragon</a></td>
+ <td style="text-align:right">2002-12-18</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.3.txt">0.3</a></td>
+ <td><a href="/static/pkglists/list-0.3.txt">Firefly</a></td>
+ <td style="text-align:right">2002-08-07</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.2.txt">0.2</a></td>
+ <td><a href="/static/pkglists/list-0.2.txt">Vega</a></td>
+ <td style="text-align:right">2002-04-17</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.1.txt">0.1</a></td>
+ <td><a href="/static/pkglists/list-0.1.txt">Homer</a></td>
+ <td style="text-align:right">2002-03-11</td>
+ </tr>
+ </table>
+ </div>
+ <br />
+ <h3>Documentation:</h3>
+ <ul class="links">
+ <li><a href="/static/docs/arch-install-guide.txt">Installation Guide</a></li>
+ <li><a href="http://wiki.archlinux.org">Wiki</a></li>
+ </ul>
+ <h3>Support Arch:</h3>
+ <ul class="links">
+ <li><a href="/donate/">Donate</a></li>
+ <li><a href="http://www.cafeshops.com/archlinux/">Arch Schwag</a></li>
+ <li><a href="/art/">Logos &amp; Artwork</a></li>
+ </ul>
+ <h3>Community Links:</h3>
+ <ul class="links">
+ <li><a href="http://www.archlinux.org/mailman/listinfo/">Mailing Lists</a></li>
+ <li><a href="/irc/">IRC Channels</a></li>
+ <li><a href="http://planet.archlinux.org">Planet Arch</a></li>
+ <li><a href="/static/newsletters/">Newsletters</a></li>
+ <li><a href="/projects/">Arch-Based Projects</a></li>
+ <li><a href="/moreforums/">Non-English Forums</a></li>
+ <li><a href="/press/">Press</a></li>
+ </ul>
+ <h3>Development:</h3>
+ <ul class="links">
+ <li><a href="/developers/">Developers</a></li>
+ <li><a href="http://bugs.archlinux.org">Bug Tracker</a></li>
+ <li><a href="/cvs/">CVS</a></li>
+ </ul>
+{% endblock %}
diff --git a/templates/public/index.html.bak b/templates/public/index.html.bak
new file mode 100644
index 0000000..a41196d
--- /dev/null
+++ b/templates/public/index.html.bak
@@ -0,0 +1,151 @@
+{% extends "base.html" %}
+
+{% block head %}
+<link rel="alternate" type="application/rss+xml" title="Arch Linux News Updates" href="/feeds/news/" />
+<link rel="alternate" type="application/rss+xml" title="Arch Linux Package Updates" href="/feeds/packages/" />
+{% endblock %}
+
+{% block content_left %}
+ <div id="about" class="box">
+ <h2>Welcome to Arch!</h2>
+ <p>
+ You've reached the website for <strong>Arch Linux</strong>, a lightweight
+ and flexible linux distribution that tries to Keep It Simple.
+ </p><p>
+ Currently we have official packages optimized for the i686 and x86-64
+ architectures. We complement our official package sets with a
+ <a href="http://aur.archlinux.org">community-operated package repository</a>
+ that grows in size and quality each and every day.
+ </p><p>
+ Our strong community is diverse and helpful, and we pride ourselves on
+ the range of skillsets and uses for Arch that stem from it. Please
+ check out our <a href="http://bbs.archlinux.org">forums</a> and
+ <a href="http://www.archlinux.org/mailman/listinfo/">mailing lists</a>
+ to get your feet wet. Also glance through our <a href="http://wiki.archlinux.org">wiki</a>
+ if you want to learn more about Arch.
+ </p><p style="text-align: right">
+ <a href="/about/"><span style="font-size:x-small">Learn more...</span></a>
+ </p>
+ </div>
+ <br /><br />
+ <div style="float:right;position:relative;bottom:-25px">
+ <a href="/feeds/news/"><img src="/media/rss.png" alt="RSS Feed" /></a>
+ </div>
+ <h2 class="title">Latest News</h2>
+ <div>
+ {% for news in news_updates %}
+ <span style="float:right; font-size:x-small">{{ news.postdate }}</span>
+ <h4 class="news"><a href="{{ news.get_absolute_url }}">{{ news.title }}</a></h4>
+ <p class="news">{{ news.content|striptags|truncatewords:60 }}</p><br /><br />
+ {% endfor %}
+ </div>
+{% endblock %}
+
+{% block content_right %}
+ <div id="search">
+ <form method="get" action="/packages/search/">
+ <p>Package Search:&nbsp;&nbsp;<input type="text" name="q" size="20" maxlength="200" /></p>
+ </form>
+ </div>
+ <br /><br />
+ <div id="updates">
+ <div style="float:right">
+ <a href="/feeds/packages/"><img src="/media/rss.png" alt="RSS Feed" /></a>
+ </div>
+ <h3>Recent Updates</h3>
+ <table width="100%">
+ {% for pkg in pkg_updates %}
+ <tr>
+ <td><a href="{{ pkg.get_absolute_url }}">{{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</a></td>
+ <td style="text-align:right">{{ pkg.category.category }}</td>
+ </tr>
+ {% endfor %}
+ </table>
+ </div>
+ <div class="greybox">
+ <h3>Package Repositories</h3>
+ <table id="repolinks">
+ {% for repo in repos %}
+ <tr>
+ <th><a href="/packages/?repo={{ repo.name }}">{{ repo.name }}</a></th>
+ <td>{{ repo.last_update }}</td>
+ </tr>
+ {% endfor %}
+ </table>
+ </div>
+ <br />
+ <div class="greybox">
+ <h3>Releases</h3>
+ <table id="releases">
+ <tr>
+ <td><a href="/packages/?repo=Current">0.8</a></td>
+ <td><a href="/packages/?repo=Current">_________</a></td>
+ <td style="text-align:right"><em>pending</em></td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.7.2.txt">0.7.2</a></td>
+ <td><a href="/static/pkglists/list-0.7.2.txt">Gimmick</a></td>
+ <td style="text-align:right">2006-05-23</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.7.1.txt">0.7.1</a></td>
+ <td><a href="/static/pkglists/list-0.7.1.txt">Noodle</a></td>
+ <td style="text-align:right">2006-01-05</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.7.txt">0.7</a></td>
+ <td><a href="/static/pkglists/list-0.7.txt">Wombat</a></td>
+ <td style="text-align:right">2005-01-24</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.6.txt">0.6</a></td>
+ <td><a href="/static/pkglists/list-0.6.txt">Widget</a></td>
+ <td style="text-align:right">2004-03-01</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.5.txt">0.5</a></td>
+ <td><a href="/static/pkglists/list-0.5.txt">Nova</a></td>
+ <td style="text-align:right">2003-07-21</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.4.txt">0.4</a></td>
+ <td><a href="/static/pkglists/list-0.4.txt">Dragon</a></td>
+ <td style="text-align:right">2002-12-18</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.3.txt">0.3</a></td>
+ <td><a href="/static/pkglists/list-0.3.txt">Firefly</a></td>
+ <td style="text-align:right">2002-08-07</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.2.txt">0.2</a></td>
+ <td><a href="/static/pkglists/list-0.2.txt">Vega</a></td>
+ <td style="text-align:right">2002-04-17</td>
+ </tr><tr>
+ <td><a href="/static/pkglists/list-0.1.txt">0.1</a></td>
+ <td><a href="/static/pkglists/list-0.1.txt">Homer</a></td>
+ <td style="text-align:right">2002-03-11</td>
+ </tr>
+ </table>
+ </div>
+ <br />
+ <h3>Documentation:</h3>
+ <ul class="links">
+ <li><a href="/static/docs/arch-install-guide.html">Installation Guide</a></li>
+ </ul>
+ <h3>Support Arch:</h3>
+ <ul class="links">
+ <li><a href="/donate/">Donate</a></li>
+ <li><a href="http://www.cafeshops.com/archlinux/">Arch Schwag</a></li>
+ <li><a href="/art/">Logos &amp; Artwork</a></li>
+ </ul>
+ <h3>Community Links:</h3>
+ <ul class="links">
+ <li><a href="http://www.archlinux.org/mailman/listinfo/">Mailing Lists</a></li>
+ <li><a href="/irc/">IRC Channels</a></li>
+ <li><a href="http://planet.archlinux.org">Planet Arch</a></li>
+ <li><a href="http://blog.archlinux.org">Development Blog</a></li>
+ <li><a href="/static/newsletters/">Newsletters</a></li>
+ <li><a href="/projects/">Arch-Based Projects</a></li>
+ <li><a href="/moreforums/">Non-English Forums</a></li>
+ <li><a href="/press/">Press</a></li>
+ </ul>
+ <h3>Development:</h3>
+ <ul class="links">
+ <li><a href="/developers/">Developers</a></li>
+ <li><a href="http://bugs.archlinux.org">Bug Tracker</a></li>
+ <li><a href="/cvs/">CVS</a></li>
+ </ul>
+{% endblock %}
diff --git a/templates/public/irc.html b/templates/public/irc.html
new file mode 100644
index 0000000..cbd00da
--- /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 %}
+
diff --git a/templates/public/moreforums.html b/templates/public/moreforums.html
new file mode 100644
index 0000000..f8a1362
--- /dev/null
+++ b/templates/public/moreforums.html
@@ -0,0 +1,78 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <h2 class="title">More Arch Forums</h2>
+ <br /><br />
+ <p>
+ Our main forum is located at <a href="http://bbs.archlinux.org">bbs.archlinux.org</a>.
+ However, there are other locale-specific forums available.
+ </p>
+ <table cellspacing="20">
+ <tr>
+ <td width="200">Brazilian</td>
+ <td><a href="http://forum.archlinux-br.org/">http://forum.archlinux-br.org</a></td>
+ </tr>
+ <tr>
+ <td>Czech</td>
+ <td><a href="http://forum.archlinux.cz/">http://forum.archlinux.cz/</a></td>
+ </tr>
+ <tr>
+ <td>Danish</td>
+ <td><a href="http://forum.archlinux.dk">http://forum.archlinux.dk/</a></td>
+ </tr>
+ <tr>
+ <td>Dutch</td>
+ <td><a href="http://arch-forum.nl/">http://arch-forum.nl/</a></td>
+ </tr>
+ <tr>
+ <td>French</td>
+ <td><a href="http://forums.archlinuxfr.org/">http://forums.archlinuxfr.org</a></td>
+ </tr>
+ <tr>
+ <td>French</td>
+ <td><a href="http://forums.archlinux.fr/">http://forums.archlinux.fr</a></td>
+ </tr>
+ <tr>
+ <td>German</td>
+ <td><a href="http://forum.archlinux.de/">http://forum.archlinux.de</a></td>
+ </tr>
+ <tr>
+ <td>Hungarian</td>
+ <td><a href="http://archlinux.hu/forum/">http://archlinux.hu/forum/</a></td>
+ </tr>
+ <tr>
+ <td>Italian</td>
+ <td><a href="http://www.archlinux.it/forum/">http://www.archlinux.it/forum/</a></td>
+ </tr>
+ <tr>
+ <td>Polish</td>
+ <td><a href="http://forum.arch-linux.pl">http://forum.arch-linux.pl</a></td>
+ </tr>
+ <tr>
+ <td>Russian</td>
+ <td><a href="http://archlinux.org.ru/forum/">http://archlinux.org.ru/forum/</a></td>
+ </tr>
+ <tr>
+ <td>Spanish</td>
+ <td><a href="http://www.archlinux.com.ar/foros/">http://www.archlinux.com.ar/foros/</a></td>
+ </tr>
+ <tr>
+ <td>Sweden</td>
+ <td><a href="http://forum.archlinux.se/">http://forum.archlinux.se/</a>
+ </tr>
+ <tr>
+ <td>Turkish</td>
+ <td><a href="http://forum.linux-sevenler.org/index.php/board,65.0.html">http://forum.linux-sevenler.org/index.php/board,65.0.html</a></td>
+ </tr>
+ <tr>
+ <td>Ukrainian</td>
+ <td><a href="http://archlinux.org.ua/">http://archlinux.org.ua/</a></td>
+ </tr>
+ </table>
+ <br />
+ If you have a forum you would like linked, 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 %}
+
diff --git a/templates/public/press.html b/templates/public/press.html
new file mode 100644
index 0000000..b652c8d
--- /dev/null
+++ b/templates/public/press.html
@@ -0,0 +1,33 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <h2 class="title">Who's Talking About Arch?</h2>
+ <br /><br />
+ Lots of people.
+ <ul>
+ <li><a href="http://www.openaddict.com/page.php?28">Open Addict</a></li>
+ <li><a href="http://cutecomputer.wordpress.com/2006/11/12/review-arch-linux-072/">Myself and my Computer</a></li>
+ <li><a href="http://www.linuxtechdaily.com/2006/11/review-arch64-archlinux-for-64bit-processors/">Linux Tech Daily</a></li>
+ <li><a href="http://www.osnews.com/story.php?news_id=15075">OSNews</a></li>
+ <li><a href="http://www.linux-magazine.com/issue/64/Arch_Linux_Review.pdf">Linux Magazine (pdf)</a></li>
+ <li><a href="http://michael-and-mary.net/intro/?q=node/260">Michael &amp; Mary</a></li>
+ <li><a href="http://osnews.com/story.php?news_id=10142">OSNews</a></li>
+ <li><a href="http://osnews.com/story.php?news_id=10047">OSNews</a></li>
+ <li><a href="http://os.newsforge.com/os/05/02/14/1722211.shtml?tid=2">NewsForge</a></li>
+ <li><a href="http://www.linuxtimes.net/modules.php?name=News&file=article&sid=774">LinuxTimes</a></li>
+ <li><a href="http://osnews.com/story.php?news_id=9540">OSNews</a></li>
+ <li><a href="http://discuss.extremetech.com/n/mb/display.asp?webtag=extremetech&msg=53648.1">Robert Burns</a></li>
+ <li><a href="http://www.linuxlookup.com/modules.php?op=modload&name=Reviews&file=index&req=showcontent&id=58">LinuxLookup</a></li>
+ <li><a href="http://www.osnews.com/story.php?news_id=5971">OSNews</a></li>
+ <li><a href="http://www.osnews.com/story.php?news_id=4827">OSNews</a></li>
+ <li><a href="http://lwn.net/Articles/40952/">LWN</a></li>
+ <li><a href="http://www.distrowatch.com/dwres.php?resource=interview-arch">DistroWatch</a></li>
+ <li><a href="http://home.nyc.rr.com/computertaijutsu/arch.html">Scott Robbins</a></li>
+ </ul>
+ <br />
+ If you have some press you would like linked, 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 %}
+
diff --git a/templates/public/projects.html b/templates/public/projects.html
new file mode 100644
index 0000000..c669d04
--- /dev/null
+++ b/templates/public/projects.html
@@ -0,0 +1,36 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="box">
+ <h2 class="title">Arch Related Projects</h2>
+ <br /><br />
+ <p>There are a few Arch-based projects or communities that have sprung up
+ over the years. Here's a list of the ones we know about.</p>
+ <table cellspacing="20">
+ <tr>
+ <td><a href="http://user-contributions.org/home/index.php">user-contributions.org</a></td>
+ <td>A website belongs to members wanting to give a little something to the free software community</td>
+ </tr><tr>
+ <td><a href="http://www.archlinux.org/~simo/archstats/">ArchStats</a></td>
+ <td>An opt-in system that tracks which packages each user has installed, hardware specs, etc</td>
+ </tr><tr>
+ <td><a href="http://archie.dotsrc.org/">Archie Live CD</a></td>
+ <td>A live CD (and live CD build scripts) based on Arch</td>
+ </tr>
+ <tr>
+ <td><a href="http://www.archlinuxppc.org/">ArchPPC</a></td>
+ <td>Arch packages optimized for PPC</td>
+ </tr><tr>
+ <td><a href="http://user-contributions.org/projects/hwd/hwd.html">Hardware Detection</a></td>
+ <td>Hardware detection scripts for Arch <span style="font-size:x-small">(deprecated in favor of udev's auto-detection)</span></td>
+ </tr><tr>
+ <td><a href="http://arch-egis.berlios.de/">AEGIS</a></td>
+ <td>Arch Environmental/Geographical Information Systems (AEGIS) Project</td>
+ </tr>
+ </table>
+ <br />
+ If you have an Arch related project you would like linked, 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 %}
+