From 8fcdf0c2cde1c3cff98be4572a0e9e3a1d910901 Mon Sep 17 00:00:00 2001 From: eliott Date: Sat, 29 Dec 2007 18:42:50 -0800 Subject: Moved some templates around --- templates/devel/about.html | 82 ++++++++++++++++++ templates/devel/art.html | 28 +++++++ templates/devel/blank.html | 10 +++ templates/devel/cvs.html | 48 +++++++++++ templates/devel/denied.html | 11 +++ templates/devel/developers.html | 67 +++++++++++++++ templates/devel/donate.html | 63 ++++++++++++++ templates/devel/download.html | 74 +++++++++++++++++ templates/devel/irc.html | 42 ++++++++++ templates/devel/moreforums.html | 78 +++++++++++++++++ templates/devel/press.html | 33 ++++++++ templates/devel/projects.html | 36 ++++++++ templates/devel/siteindex.html | 175 +++++++++++++++++++++++++++++++++++++++ templates/public/about.html | 82 ------------------ templates/public/art.html | 28 ------- templates/public/blank.html | 10 --- templates/public/cvs.html | 48 ----------- templates/public/denied.html | 11 --- templates/public/developers.html | 67 --------------- templates/public/donate.html | 63 -------------- templates/public/download.html | 74 ----------------- templates/public/index.html | 175 --------------------------------------- templates/public/index.html.bak | 151 --------------------------------- templates/public/irc.html | 42 ---------- templates/public/moreforums.html | 78 ----------------- templates/public/press.html | 33 -------- templates/public/projects.html | 36 -------- 27 files changed, 747 insertions(+), 898 deletions(-) create mode 100644 templates/devel/about.html create mode 100644 templates/devel/art.html create mode 100644 templates/devel/blank.html create mode 100644 templates/devel/cvs.html create mode 100644 templates/devel/denied.html create mode 100644 templates/devel/developers.html create mode 100644 templates/devel/donate.html create mode 100644 templates/devel/download.html create mode 100644 templates/devel/irc.html create mode 100644 templates/devel/moreforums.html create mode 100644 templates/devel/press.html create mode 100644 templates/devel/projects.html create mode 100644 templates/devel/siteindex.html delete mode 100644 templates/public/about.html delete mode 100644 templates/public/art.html delete mode 100644 templates/public/blank.html delete mode 100644 templates/public/cvs.html delete mode 100644 templates/public/denied.html delete mode 100644 templates/public/developers.html delete mode 100644 templates/public/donate.html delete mode 100644 templates/public/download.html delete mode 100644 templates/public/index.html delete mode 100644 templates/public/index.html.bak delete mode 100644 templates/public/irc.html delete mode 100644 templates/public/moreforums.html delete mode 100644 templates/public/press.html delete mode 100644 templates/public/projects.html (limited to 'templates') diff --git a/templates/devel/about.html b/templates/devel/about.html new file mode 100644 index 00000000..0712b5d0 --- /dev/null +++ b/templates/devel/about.html @@ -0,0 +1,82 @@ +{% extends "base.html" %} + +{% block content %} +
+

About Arch Linux

+ +

+ 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 linuxconf in + here) so you will quickly become very proficient at configuring your system + from the shell commandline. +

+ +

+ 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. +

+ +

+ Arch Linux uses the Pacman + 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. +

+ +

+ 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). +

+ +

+ 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. +

+ +

+ Arch Linux does not provide any official support, but you will find a lot + of helpful people on our IRC channel and on our user forums. Chances are that some other + Archer has had the same problem/question as you and it's already been + answered. Ask around! +

+ +

+ Arch Linux uses a "rolling release" system which works like this: We have + two versions of our core package set at any given time, Current and + Release. 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. +

+ +

+ 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. +

+
+

+{% endblock %} + diff --git a/templates/devel/art.html b/templates/devel/art.html new file mode 100644 index 00000000..4d1f7d1a --- /dev/null +++ b/templates/devel/art.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} + +{% block content %} +

+
+

Arch Linux Logos

+

+ + + + + + + + + + + + + + + + +

SVG

SVG

SVG

SVG

SVG
+
+

+{% endblock %} + diff --git a/templates/devel/blank.html b/templates/devel/blank.html new file mode 100644 index 00000000..d1e7b71b --- /dev/null +++ b/templates/devel/blank.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% block content %} +
+

Download Arch Linux

+

+
+

+{% endblock %} + diff --git a/templates/devel/cvs.html b/templates/devel/cvs.html new file mode 100644 index 00000000..715d00d3 --- /dev/null +++ b/templates/devel/cvs.html @@ -0,0 +1,48 @@ +{% extends "base.html" %} + +{% block content %} +
+ You can access all of our PKGBUILD files from the + cvsweb interface. +
+

+
+

CVS Repositories

+

+ Anonymous CVS access is also available. Use anonymous as the + username and password.

+
    +
  1. + Set CVSROOT to the repository you wish to access:

    +
    +# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-core

    +OR

    +# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-extra

    +OR

    +# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-unstable

    +
    +

    +
  2. +
  3. + Login:

    +
    +# touch ~/.cvspass
    +# cvs login
    +Logging in to :pserver:anonymous@cvs.archlinux.org:2401/home/cvs-core
    +CVS password: anonymous
    +
    +

    +
  4. +
  5. + Check out the repository:

    +
    +# cvs -z3 co core

    +OR

    +# cvs -z3 co extra
    +
    +
  6. +
+
+

+{% endblock %} + diff --git a/templates/devel/denied.html b/templates/devel/denied.html new file mode 100644 index 00000000..c59c0f73 --- /dev/null +++ b/templates/devel/denied.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} + +{% block content %} +
+

+ Sorry, you don't have sufficient privileges to perform this function. +

+
+

+{% endblock %} + diff --git a/templates/devel/developers.html b/templates/devel/developers.html new file mode 100644 index 00000000..6b1fe8b7 --- /dev/null +++ b/templates/devel/developers.html @@ -0,0 +1,67 @@ +{% extends "base.html" %} + +{% block content %} +
+

Arch Linux Core Developers

+

+
+ {% for dev in devs %} + {{ dev.first_name }}   + {% endfor %} +


+ + + {% for dev in devs %} + + + + {% endfor %} +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name:{{ dev.get_full_name }}
Alias:{{ dev.get_profile.alias }}
Email:{{ dev.get_profile.public_email }}
Other Contact:{{ dev.get_profile.other_contact }}
Roles:{{ dev.get_profile.roles }}
+
Website:{{ dev.get_profile.website }}
Occupation:{{ dev.get_profile.occupation }}
YOB:{% if dev.get_profile.yob %}{{ dev.get_profile.yob }}{% else %} {% endif %}
Location:{{ dev.get_profile.location }}
Languages:{{ dev.get_profile.languages }}
Interests:{{ dev.get_profile.interests }}
Favorite Distros:{{ dev.get_profile.favorite_distros }}
+
+
+

+{% endblock %} + diff --git a/templates/devel/donate.html b/templates/devel/donate.html new file mode 100644 index 00000000..9436b09a --- /dev/null +++ b/templates/devel/donate.html @@ -0,0 +1,63 @@ +{% extends "base.html" %} + +{% block content %} +
+

Donate to Arch Linux

+

+ 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. +

+ 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. +

+ Many thanks! +

+
+ +
+ + + + + + + + + + + + +
+
+

+

Past Donors

+ + + + + + + +
+ {% for donor in slice1 %} + {{ donor.name }}
+ {% endfor %} +
+ {% for donor in slice2 %} + {{ donor.name }}
+ {% endfor %} +
+ {% for donor in slice3 %} + {{ donor.name }}
+ {% endfor %} +
+ {% for donor in slice4 %} + {{ donor.name }}
+ {% endfor %} +
+
+

+{% endblock %} + diff --git a/templates/devel/download.html b/templates/devel/download.html new file mode 100644 index 00000000..be840d3a --- /dev/null +++ b/templates/devel/download.html @@ -0,0 +1,74 @@ +{% extends "base.html" %} + +{% block content %} +
+

Buy A CD

+ CDs are available for purchase from OSDisc.com. For each CD purchased, a + portion of the money goes to the Arch Linux Project.

+
+ Click here to purchase a CD +
+

+ +

BitTorrent Download

+

+
+

Download with BitTorrent

+ If you can spare the bytes, please leave the BT client + open after your
download is finished, so you can seed it back to others.
+
+ + + + + + + + + + + + + + + +
 COREFTP Install
i686: + + 2007.08-2 + + + + 2007.08-2 + +
x86_64: + + 2007.08-2 + + + + 2007.08-2 + +
+
+

+ +

HTTP/FTP Download

+

+
+

Download with HTTP/FTP

+ In addition to the BitTorrent links above, ISO images can also be downloaded
via HTTP/FTP from the /iso/ sub-directory of mirror sites listed below.
+

+

Mirror Sites

+ + {% for mirror in mirrors %} + + + + + {% endfor %} +
{{ mirror.domain }}{{ mirror.country }}
+
+
+

+{% endblock %} + diff --git a/templates/devel/irc.html b/templates/devel/irc.html new file mode 100644 index 00000000..f69be873 --- /dev/null +++ b/templates/devel/irc.html @@ -0,0 +1,42 @@ +{% extends "base.html" %} + +{% block content %} +
+

IRC Channels

+

+

You can find Arch-related discussion on the following IRC channels. + All channels are on irc.freenode.net

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#archlinuxThe main discussion channel, mostly in English
#archlinux-bugsBug-centric discussion
#archlinuxfrDiscussion (French)
#archlinux.deDiscussion (German)
#archlinux.seDiscussion (Swedish)
#archlinux.dkDiscussion (Danish)
#archlinux-esDiscussion (Spanish)
#archlinux.brDiscussion (Brazilian)
#archlinux.itDiscussion (Italian)
+
+

+{% endblock %} + diff --git a/templates/devel/moreforums.html b/templates/devel/moreforums.html new file mode 100644 index 00000000..f8a13624 --- /dev/null +++ b/templates/devel/moreforums.html @@ -0,0 +1,78 @@ +{% extends "base.html" %} + +{% block content %} +
+

More Arch Forums

+

+

+ Our main forum is located at bbs.archlinux.org. + However, there are other locale-specific forums available. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Brazilianhttp://forum.archlinux-br.org
Czechhttp://forum.archlinux.cz/
Danishhttp://forum.archlinux.dk/
Dutchhttp://arch-forum.nl/
Frenchhttp://forums.archlinuxfr.org
Frenchhttp://forums.archlinux.fr
Germanhttp://forum.archlinux.de
Hungarianhttp://archlinux.hu/forum/
Italianhttp://www.archlinux.it/forum/
Polishhttp://forum.arch-linux.pl
Russianhttp://archlinux.org.ru/forum/
Spanishhttp://www.archlinux.com.ar/foros/
Swedenhttp://forum.archlinux.se/ +
Turkishhttp://forum.linux-sevenler.org/index.php/board,65.0.html
Ukrainianhttp://archlinux.org.ua/
+
+ If you have a forum you would like linked, please open a Bug Ticket with the category "web site", and a relevant description. +
+

+{% endblock %} + diff --git a/templates/devel/press.html b/templates/devel/press.html new file mode 100644 index 00000000..b652c8dc --- /dev/null +++ b/templates/devel/press.html @@ -0,0 +1,33 @@ +{% extends "base.html" %} + +{% block content %} +
+

Who's Talking About Arch?

+

+ Lots of people. + +
+ If you have some press you would like linked, please open a Bug Ticket with the category "web site", and a relevant description. +
+

+{% endblock %} + diff --git a/templates/devel/projects.html b/templates/devel/projects.html new file mode 100644 index 00000000..c669d048 --- /dev/null +++ b/templates/devel/projects.html @@ -0,0 +1,36 @@ +{% extends "base.html" %} + +{% block content %} +
+

Arch Related Projects

+

+

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.

+ + + + + + + + + + + + + + + + + + + + + +
user-contributions.orgA website belongs to members wanting to give a little something to the free software community
ArchStatsAn opt-in system that tracks which packages each user has installed, hardware specs, etc
Archie Live CDA live CD (and live CD build scripts) based on Arch
ArchPPCArch packages optimized for PPC
Hardware DetectionHardware detection scripts for Arch (deprecated in favor of udev's auto-detection)
AEGISArch Environmental/Geographical Information Systems (AEGIS) Project
+
+ If you have an Arch related project you would like linked, please open a Bug Ticket with the category "web site", and a relevant description. +
+

+{% endblock %} + diff --git a/templates/devel/siteindex.html b/templates/devel/siteindex.html new file mode 100644 index 00000000..75097127 --- /dev/null +++ b/templates/devel/siteindex.html @@ -0,0 +1,175 @@ +{% extends "base.html" %} + +{% block head %} + + +{% endblock %} + +{% block content_left %} +
+

Welcome to Arch!

+

+ You've reached the website for Arch Linux, a lightweight + and flexible linux distribution that tries to Keep It Simple. +

+ Currently we have official packages optimized for the i686 and x86-64 + architectures. We complement our official package sets with a + community-operated package repository + that grows in size and quality each and every day. +

+ 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 forums and + mailing lists + to get your feet wet. Also glance through our wiki + if you want to learn more about Arch. +

+ Learn more... +

+
+

+
+ RSS Feed +
+

Latest News

+
+ {% for news in news_updates %} +
+ {{ news.postdate }} +

{{ news.title }}

+

{{ news.content|striptags|truncatewords:60 }}

+
+ {% endfor %} + More News... +

+
+{% endblock %} + +{% block content_right %} + +
+ + + + + + {% for pkg in pkg_updates %} + + + + + {% endfor %} + + + +

Recent Updates

RSS Feed
{{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}{{ pkg.category.category }}

More...
+
+
+
+

Package Repositories

+ + {% for repo in repos %} + + + + + {% endfor %} + +
+
+
+

Releases

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2007.08-2Don't Panic2007-10-07
2007.08.1Don't Panic2007-09-10
2007.08Don't Panic2007-08-05
2007.05Duke2007-05-17
0.8Voodoo2007-03-31
0.7.2Gimmick2006-05-23
0.7.1Noodle2006-01-05
0.7Wombat2005-01-24
0.6Widget2004-03-01
0.5Nova2003-07-21
0.4Dragon2002-12-18
0.3Firefly2002-08-07
0.2Vega2002-04-17
0.1Homer2002-03-11
+
+
+

Documentation:

+ +

Support Arch:

+ +

Community Links:

+ +

Development:

+ +{% endblock %} diff --git a/templates/public/about.html b/templates/public/about.html deleted file mode 100644 index 0712b5d0..00000000 --- a/templates/public/about.html +++ /dev/null @@ -1,82 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

About Arch Linux

- -

- 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 linuxconf in - here) so you will quickly become very proficient at configuring your system - from the shell commandline. -

- -

- 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. -

- -

- Arch Linux uses the Pacman - 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. -

- -

- 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). -

- -

- 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. -

- -

- Arch Linux does not provide any official support, but you will find a lot - of helpful people on our IRC channel and on our user forums. Chances are that some other - Archer has had the same problem/question as you and it's already been - answered. Ask around! -

- -

- Arch Linux uses a "rolling release" system which works like this: We have - two versions of our core package set at any given time, Current and - Release. 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. -

- -

- 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. -

-
-

-{% endblock %} - diff --git a/templates/public/art.html b/templates/public/art.html deleted file mode 100644 index 4d1f7d1a..00000000 --- a/templates/public/art.html +++ /dev/null @@ -1,28 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -

-
-

Arch Linux Logos

-

- - - - - - - - - - - - - - - - -

SVG

SVG

SVG

SVG

SVG
-
-

-{% endblock %} - diff --git a/templates/public/blank.html b/templates/public/blank.html deleted file mode 100644 index d1e7b71b..00000000 --- a/templates/public/blank.html +++ /dev/null @@ -1,10 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

Download Arch Linux

-

-
-

-{% endblock %} - diff --git a/templates/public/cvs.html b/templates/public/cvs.html deleted file mode 100644 index 715d00d3..00000000 --- a/templates/public/cvs.html +++ /dev/null @@ -1,48 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
- You can access all of our PKGBUILD files from the - cvsweb interface. -
-

-
-

CVS Repositories

-

- Anonymous CVS access is also available. Use anonymous as the - username and password.

-
    -
  1. - Set CVSROOT to the repository you wish to access:

    -
    -# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-core

    -OR

    -# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-extra

    -OR

    -# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-unstable

    -
    -

    -
  2. -
  3. - Login:

    -
    -# touch ~/.cvspass
    -# cvs login
    -Logging in to :pserver:anonymous@cvs.archlinux.org:2401/home/cvs-core
    -CVS password: anonymous
    -
    -

    -
  4. -
  5. - Check out the repository:

    -
    -# cvs -z3 co core

    -OR

    -# cvs -z3 co extra
    -
    -
  6. -
-
-

-{% endblock %} - diff --git a/templates/public/denied.html b/templates/public/denied.html deleted file mode 100644 index c59c0f73..00000000 --- a/templates/public/denied.html +++ /dev/null @@ -1,11 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

- Sorry, you don't have sufficient privileges to perform this function. -

-
-

-{% endblock %} - diff --git a/templates/public/developers.html b/templates/public/developers.html deleted file mode 100644 index 6b1fe8b7..00000000 --- a/templates/public/developers.html +++ /dev/null @@ -1,67 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

Arch Linux Core Developers

-

-
- {% for dev in devs %} - {{ dev.first_name }}   - {% endfor %} -


- - - {% for dev in devs %} - - - - {% endfor %} -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name:{{ dev.get_full_name }}
Alias:{{ dev.get_profile.alias }}
Email:{{ dev.get_profile.public_email }}
Other Contact:{{ dev.get_profile.other_contact }}
Roles:{{ dev.get_profile.roles }}
-
Website:{{ dev.get_profile.website }}
Occupation:{{ dev.get_profile.occupation }}
YOB:{% if dev.get_profile.yob %}{{ dev.get_profile.yob }}{% else %} {% endif %}
Location:{{ dev.get_profile.location }}
Languages:{{ dev.get_profile.languages }}
Interests:{{ dev.get_profile.interests }}
Favorite Distros:{{ dev.get_profile.favorite_distros }}
-
-
-

-{% endblock %} - diff --git a/templates/public/donate.html b/templates/public/donate.html deleted file mode 100644 index 9436b09a..00000000 --- a/templates/public/donate.html +++ /dev/null @@ -1,63 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

Donate to Arch Linux

-

- 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. -

- 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. -

- Many thanks! -

-
- -
- - - - - - - - - - - - -
-
-

-

Past Donors

- - - - - - - -
- {% for donor in slice1 %} - {{ donor.name }}
- {% endfor %} -
- {% for donor in slice2 %} - {{ donor.name }}
- {% endfor %} -
- {% for donor in slice3 %} - {{ donor.name }}
- {% endfor %} -
- {% for donor in slice4 %} - {{ donor.name }}
- {% endfor %} -
-
-

-{% endblock %} - diff --git a/templates/public/download.html b/templates/public/download.html deleted file mode 100644 index be840d3a..00000000 --- a/templates/public/download.html +++ /dev/null @@ -1,74 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

Buy A CD

- CDs are available for purchase from OSDisc.com. For each CD purchased, a - portion of the money goes to the Arch Linux Project.

-
- Click here to purchase a CD -
-

- -

BitTorrent Download

-

-
-

Download with BitTorrent

- If you can spare the bytes, please leave the BT client - open after your
download is finished, so you can seed it back to others.
-
- - - - - - - - - - - - - - - -
 COREFTP Install
i686: - - 2007.08-2 - - - - 2007.08-2 - -
x86_64: - - 2007.08-2 - - - - 2007.08-2 - -
-
-

- -

HTTP/FTP Download

-

-
-

Download with HTTP/FTP

- In addition to the BitTorrent links above, ISO images can also be downloaded
via HTTP/FTP from the /iso/ sub-directory of mirror sites listed below.
-

-

Mirror Sites

- - {% for mirror in mirrors %} - - - - - {% endfor %} -
{{ mirror.domain }}{{ mirror.country }}
-
-
-

-{% endblock %} - diff --git a/templates/public/index.html b/templates/public/index.html deleted file mode 100644 index 75097127..00000000 --- a/templates/public/index.html +++ /dev/null @@ -1,175 +0,0 @@ -{% extends "base.html" %} - -{% block head %} - - -{% endblock %} - -{% block content_left %} -
-

Welcome to Arch!

-

- You've reached the website for Arch Linux, a lightweight - and flexible linux distribution that tries to Keep It Simple. -

- Currently we have official packages optimized for the i686 and x86-64 - architectures. We complement our official package sets with a - community-operated package repository - that grows in size and quality each and every day. -

- 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 forums and - mailing lists - to get your feet wet. Also glance through our wiki - if you want to learn more about Arch. -

- Learn more... -

-
-

-
- RSS Feed -
-

Latest News

-
- {% for news in news_updates %} -
- {{ news.postdate }} -

{{ news.title }}

-

{{ news.content|striptags|truncatewords:60 }}

-
- {% endfor %} - More News... -

-
-{% endblock %} - -{% block content_right %} - -
- - - - - - {% for pkg in pkg_updates %} - - - - - {% endfor %} - - - -

Recent Updates

RSS Feed
{{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}{{ pkg.category.category }}

More...
-
-
-
-

Package Repositories

- - {% for repo in repos %} - - - - - {% endfor %} - -
-
-
-

Releases

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2007.08-2Don't Panic2007-10-07
2007.08.1Don't Panic2007-09-10
2007.08Don't Panic2007-08-05
2007.05Duke2007-05-17
0.8Voodoo2007-03-31
0.7.2Gimmick2006-05-23
0.7.1Noodle2006-01-05
0.7Wombat2005-01-24
0.6Widget2004-03-01
0.5Nova2003-07-21
0.4Dragon2002-12-18
0.3Firefly2002-08-07
0.2Vega2002-04-17
0.1Homer2002-03-11
-
-
-

Documentation:

- -

Support Arch:

- -

Community Links:

- -

Development:

- -{% endblock %} diff --git a/templates/public/index.html.bak b/templates/public/index.html.bak deleted file mode 100644 index a41196df..00000000 --- a/templates/public/index.html.bak +++ /dev/null @@ -1,151 +0,0 @@ -{% extends "base.html" %} - -{% block head %} - - -{% endblock %} - -{% block content_left %} -
-

Welcome to Arch!

-

- You've reached the website for Arch Linux, a lightweight - and flexible linux distribution that tries to Keep It Simple. -

- Currently we have official packages optimized for the i686 and x86-64 - architectures. We complement our official package sets with a - community-operated package repository - that grows in size and quality each and every day. -

- 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 forums and - mailing lists - to get your feet wet. Also glance through our wiki - if you want to learn more about Arch. -

- Learn more... -

-
-

-
- RSS Feed -
-

Latest News

-
- {% for news in news_updates %} - {{ news.postdate }} -

{{ news.title }}

-

{{ news.content|striptags|truncatewords:60 }}



- {% endfor %} -
-{% endblock %} - -{% block content_right %} - -

-
-
- RSS Feed -
-

Recent Updates

- - {% for pkg in pkg_updates %} - - - - - {% endfor %} -
{{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}{{ pkg.category.category }}
-
-
-

Package Repositories

- - {% for repo in repos %} - - - - - {% endfor %} - -
-
-
-

Releases

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
0.8_________pending
0.7.2Gimmick2006-05-23
0.7.1Noodle2006-01-05
0.7Wombat2005-01-24
0.6Widget2004-03-01
0.5Nova2003-07-21
0.4Dragon2002-12-18
0.3Firefly2002-08-07
0.2Vega2002-04-17
0.1Homer2002-03-11
-
-
-

Documentation:

- -

Support Arch:

- -

Community Links:

- -

Development:

- -{% endblock %} diff --git a/templates/public/irc.html b/templates/public/irc.html deleted file mode 100644 index f69be873..00000000 --- a/templates/public/irc.html +++ /dev/null @@ -1,42 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

IRC Channels

-

-

You can find Arch-related discussion on the following IRC channels. - All channels are on irc.freenode.net

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#archlinuxThe main discussion channel, mostly in English
#archlinux-bugsBug-centric discussion
#archlinuxfrDiscussion (French)
#archlinux.deDiscussion (German)
#archlinux.seDiscussion (Swedish)
#archlinux.dkDiscussion (Danish)
#archlinux-esDiscussion (Spanish)
#archlinux.brDiscussion (Brazilian)
#archlinux.itDiscussion (Italian)
-
-

-{% endblock %} - diff --git a/templates/public/moreforums.html b/templates/public/moreforums.html deleted file mode 100644 index f8a13624..00000000 --- a/templates/public/moreforums.html +++ /dev/null @@ -1,78 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

More Arch Forums

-

-

- Our main forum is located at bbs.archlinux.org. - However, there are other locale-specific forums available. -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Brazilianhttp://forum.archlinux-br.org
Czechhttp://forum.archlinux.cz/
Danishhttp://forum.archlinux.dk/
Dutchhttp://arch-forum.nl/
Frenchhttp://forums.archlinuxfr.org
Frenchhttp://forums.archlinux.fr
Germanhttp://forum.archlinux.de
Hungarianhttp://archlinux.hu/forum/
Italianhttp://www.archlinux.it/forum/
Polishhttp://forum.arch-linux.pl
Russianhttp://archlinux.org.ru/forum/
Spanishhttp://www.archlinux.com.ar/foros/
Swedenhttp://forum.archlinux.se/ -
Turkishhttp://forum.linux-sevenler.org/index.php/board,65.0.html
Ukrainianhttp://archlinux.org.ua/
-
- If you have a forum you would like linked, please open a Bug Ticket with the category "web site", and a relevant description. -
-

-{% endblock %} - diff --git a/templates/public/press.html b/templates/public/press.html deleted file mode 100644 index b652c8dc..00000000 --- a/templates/public/press.html +++ /dev/null @@ -1,33 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

Who's Talking About Arch?

-

- Lots of people. - -
- If you have some press you would like linked, please open a Bug Ticket with the category "web site", and a relevant description. -
-

-{% endblock %} - diff --git a/templates/public/projects.html b/templates/public/projects.html deleted file mode 100644 index c669d048..00000000 --- a/templates/public/projects.html +++ /dev/null @@ -1,36 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

Arch Related Projects

-

-

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.

- - - - - - - - - - - - - - - - - - - - - -
user-contributions.orgA website belongs to members wanting to give a little something to the free software community
ArchStatsAn opt-in system that tracks which packages each user has installed, hardware specs, etc
Archie Live CDA live CD (and live CD build scripts) based on Arch
ArchPPCArch packages optimized for PPC
Hardware DetectionHardware detection scripts for Arch (deprecated in favor of udev's auto-detection)
AEGISArch Environmental/Geographical Information Systems (AEGIS) Project
-
- If you have an Arch related project you would like linked, please open a Bug Ticket with the category "web site", and a relevant description. -
-

-{% endblock %} - -- cgit v1.2.3-55-g3dc8