summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/templates/includes/downloads/arch-main.html')
-rw-r--r--python/templates/includes/downloads/arch-main.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/python/templates/includes/downloads/arch-main.html b/python/templates/includes/downloads/arch-main.html
new file mode 100644
index 0000000..f4cecd0
--- /dev/null
+++ b/python/templates/includes/downloads/arch-main.html
@@ -0,0 +1,29 @@
+<div class="col-xs-12 col-md-6">
+ <h4>Boot Media</h4>
+ <div class="list-group">
+ {% for iso in download.isos %}
+ {% include "includes/partials/download-link-raw.html" with arch=key id=iso.id title=iso.title urlprefix=site.download_url tag=iso.tag link=iso.link date=iso.date size=iso.size %}
+ {% endfor %}
+ </div>
+
+
+ <h4>Stage Archives</h4>
+ <div class="list-group">
+ {% for stage3 in download.stage3s %}
+ {% include "includes/partials/download-link-raw.html" with arch=key id=stage3.id title=stage3.title urlprefix=site.download_url tag=stage3.tag link=stage3.link date=stage3.date size=stage3.size %}
+ {% endfor %}
+ </div>
+</div>
+<div class="col-xs-12 col-md-6">
+ <h4>Details (Contents, Hashes, and Signatures)</h4>
+ <ul>
+ <li><a href="{{site.download_url }}{{ key }}/autobuilds/current-install-{{ key }}-minimal/">Minimal Installation CD</a></li>
+ {% for stage3 in download.stage3s %}
+ {% if stage3.defaultstage %}
+ <li><a href="{{site.download_url }}{{ key }}/autobuilds/current-stage3-{% if stage3.tag %}{{ stage3.tag }}{% else %}{{ key }}{% endif %}/">Stage 3</a></li>
+ {% endif %}
+ {% endfor %}
+ <li><a href="{{site.download_url }}{{ key }}/autobuilds/">All Stages</a></li>
+ </ul>
+ {% include "includes/downloads/warnings.html" with key=key %}
+</div> \ No newline at end of file