summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/templates/includes/downloads/arch-default.html')
-rw-r--r--python/templates/includes/downloads/arch-default.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/python/templates/includes/downloads/arch-default.html b/python/templates/includes/downloads/arch-default.html
new file mode 100644
index 0000000..529abbf
--- /dev/null
+++ b/python/templates/includes/downloads/arch-default.html
@@ -0,0 +1,33 @@
+<h4>Boot Media</h4>
+<div class="list-group">
+ {% for iso in download.isos %}
+ {% if iso.id == 'minimal' %}
+ {% include "includes/partials/download-link-raw.html" with arch=download.arch id=iso.id title=iso.title tag=iso.tag link=iso.link date=iso.date size=iso.size urlprefix=site.download_url %}
+ {% endif %}
+ {% endfor %}
+ {% if download.arch == 'amd64' %}
+ {% include "includes/partials/download-link-raw.html" with urlprefix='http://bouncer.gentoo.org/fetch/gentoo-20140826-livedvd/' link='amd64/' title='Hybrid ISO (LiveDVD)' size='2800000000' date='2014-08-26' %}
+ {% elif download.arch == 'x86' %}
+ {% include "includes/partials/download-link-raw.html" with urlprefix='http://bouncer.gentoo.org/fetch/gentoo-20140826-livedvd/' link='x86/' title='Hybrid ISO (LiveDVD)' size='2800000000' date='2014-08-26' %}
+ {% endif %}
+</div>
+
+<h4>Stage Archives</h4>
+<div class="list-group">
+ {% for stage3 in download.stage3s %}
+ {% if stage3.defaultstage %}
+ {% include "includes/partials/download-link-raw.html" with arch=download.arch id=stage3.id title=stage3.title tag=stage3.tag link=stage3.link date=stage3.date size=stage3.size urlprefix=site.download_url %}
+ {% endif %}
+ {% endfor %}
+</div>
+
+<h4>Details (Contents, Hashes, and Signatures)</h4>
+<p>
+ <a href="{{site.download_url }}/{{ download.arch }}/autobuilds/current-install-{{ download.arch }}-minimal/">Minimal Installation CD</a>,
+ <a href="http://bouncer.gentoo.org/fetch/gentoo-20140826-livedvd/{{ download.arch }}/">Hybrid ISO</a>,
+ {% for stage3 in download.stage3s %}
+ {% if stage3.defaultstage %}
+ <a href="{{site.download_url }}/{{ download.arch }}/autobuilds/current-stage3-{% if stage3.tag %}{{ stage3.tag }}{% else %}{{ download.arch }}{% endif %}/">Stage 3</a>
+ {% endif %}
+ {% endfor %}
+</p> \ No newline at end of file