summaryrefslogtreecommitdiff
blob: f4cecd08b99d6356fcb96537088ded270d51b32f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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>