diff options
Diffstat (limited to 'templates/public/download.html')
-rw-r--r-- | templates/public/download.html | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/templates/public/download.html b/templates/public/download.html new file mode 100644 index 00000000..1fb1af65 --- /dev/null +++ b/templates/public/download.html @@ -0,0 +1,130 @@ +{% extends "base.html" %} + +{% block content %} +<div class="box"> + <h2 class="title">Release Info</h2> + <div style="text-align:center"> + <p>For new installations only.<br /> + An Arch Linux system can always be updated with `pacman -Syu`</p> + + <b>Current Release:</b> 2009.08 <br /> + <b>Included Kernel:</b> 2.6.28-ARCH <br /> + <b>Resources:</b> + <a href="http://bugs.archlinux.org/index.php?project=6">Bug Tracker</a> + - + <a href="http://www.archlinux.org/mailman/listinfo/arch-releng">Mailing List</a> + <br /> + <br /> + <b>Links and Instructions:</b><br /> + <a href="ftp://ftp.archlinux.org/iso/2009.08/instructions.txt"> + Downloading Instructions + </a> + <br /> + <a href="http://wiki.archlinux.org/index.php/Official_Arch_Linux_Install_Guide"> + Arch Linux Install Guide + </a> + <br /> + <a href="http://wiki.archlinux.org/index.php/Install_from_USB_stick"> + USB Image help + </a> + </div> + <h2 class="title">BitTorrent Download (recommended)</h2> + <div style="text-align:center"> + <p>If you can spare the bytes, please leave the client + open after your<br /> download is finished, so you can seed + it back to others.</p> + + <p>A web-seed capable client is recommended for fastest download + speeds</p> + + <b>FTP ISOs:</b> + <a href="ftp://ftp.archlinux.org/iso/2009.08/archlinux-2009.08-netinstall-i686.iso.torrent">i686</a> + - + <a href="ftp://ftp.archlinux.org/iso/2009.08/archlinux-2009.08-netinstall-x86_64.iso.torrent">x86_64</a> + <br /> + + <b>Core ISOs:</b> + <a href="ftp://ftp.archlinux.org/iso/2009.08/archlinux-2009.08-core-i686.iso.torrent">i686</a> + - + <a href="ftp://ftp.archlinux.org/iso/2009.08/archlinux-2009.08-core-x86_64.iso.torrent">x86_64</a> + <br /> + + <b>FTP USB Images:</b> + <a href="ftp://ftp.archlinux.org/iso/2009.08/archlinux-2009.08-netinstall-i686.img.torrent">i686</a> + - + <a href="ftp://ftp.archlinux.org/iso/2009.08/archlinux-2009.08-netinstall-x86_64.img.torrent">x86_64</a> + <br /> + + <b>Core USB Images:</b> + <a href="ftp://ftp.archlinux.org/iso/2009.08/archlinux-2009.08-core-i686.img.torrent">i686</a> + - + <a href="ftp://ftp.archlinux.org/iso/2009.08/archlinux-2009.08-core-x86_64.img.torrent">x86_64</a> + <br /> + + <b>ISOLINUX ISOs:</b> + <a href="ftp://ftp.archlinux.org/iso/2009.08/archlinux-2009.08-netinstall-i686-isolinux.iso.torrent">i686</a> + - + <a href="ftp://ftp.archlinux.org/iso/2009.08/archlinux-2009.08-netinstall-x86_64-isolinux.iso.torrent">x86_64</a> + + </div> + <h2 class="title">Buy A CD</h2> + <div style="text-align:center"> + These suppliers donate a small percentage of each CD purchased to + the Arch Linux project: + <table class="center" cellspacing="10"> + <tr><td> + <a href="http://www.osdisc.com/cgi-bin/distro/index.cgi?distro=archlinux"> + Purchase CD from OSDisc</a> + </td></tr> + <tr><td> + <a href="http://www.shoplinuxonline.com/index.php?main_page=index&cPath=1_46&zenid=ecd15b48affe8976130bc575c1276ee4"> + Purchase CD from Shop Linux Online</a> + </td></tr> + </table> + You can also purchase Arch on CD from these suppliers: + <table class="center" cellspacing="10"> + <tr> + <td> + <a href="http://www.linuxcd.org/view_distro.php?id_distro=48">Purchase CD from LinuxCD</a> + </td></tr> + </table> + </div> + + + <h2 class="title">HTTP/FTP Download</h2> + <div style="text-align:center"> + <p>In addition to the BitTorrent links above, ISO images can also be downloaded <br /> + via HTTP or FTP from the mirror sites listed below.</p> + + <p>Please ensure the download image matches the checksum from the<br /> + md5sums.txt or sha1sums.txt file in the same directory as the image.</p> + <h3>Checksums</h3> + <p> + <a href="ftp://ftp.archlinux.org/iso/2009.08/sha1sums.txt">SHA1</a> + <br /> + <a href="ftp://ftp.archlinux.org/iso/2009.08/md5sums.txt">MD5</a> + </p> + + <table class="center"> + <tr><td colspan="2"><h3>Mirror Sites</h3> + {% for mirror_url in mirror_url_list %} + {% ifchanged mirror_url.mirror.country %} + </td></tr> + <tr><td colspan="2" style="text-align: left"><br /><h4>{{mirror_url.mirror.country}}</h4> + {% endifchanged %} + {% ifchanged mirror_url.mirror.name %} + </td></tr> + <tr><td style="text-align: left">{{mirror_url.mirror.name}}</td><td style="text-align: right"> + {% endifchanged %} + (<a href="{{mirror_url.url}}iso/">{{mirror_url.protocol.protocol}}</a>) + {% endfor %} + </td></tr> + </table> + <p>If you want to become an Official Arch Linux Mirror please follow<br /> + the instructions listed <a href="http://wiki.archlinux.org/index.php/DeveloperWiki:NewMirrors">here</a>. + </p> + </div> +</div> +<br /><br /> +{% endblock %} + |