diff options
author | eliott <eliott@cactuswax.net> | 2007-12-29 18:42:50 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-12-29 18:42:50 -0800 |
commit | 8fcdf0c2cde1c3cff98be4572a0e9e3a1d910901 (patch) | |
tree | aa49de02aa64dfade956dbd9e79f09bf7fc06f13 /templates/devel/download.html | |
parent | 45454908dfa2c925c4689d74fc84c4c2055257ab (diff) |
Moved some templates around
Diffstat (limited to 'templates/devel/download.html')
-rw-r--r-- | templates/devel/download.html | 74 |
1 files changed, 74 insertions, 0 deletions
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 %} +<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> </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 %} + |