summaryrefslogtreecommitdiff
blob: 1fb7e9f2e17f8b8458ae1446ef5c0699d7a7b48b (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{% extends "layout/base.html" %}
{% block content %}
<p class="lead">
  Gentoo Linux is available free over the Internet.<br>
  You can download Gentoo Linux Live Environments and Stage Archives using the links below:
</p>

<div class="alert alert-info">
  <strong>What should I download? What do I do with these files?</strong>
  <br>
  <a href="https://wiki.gentoo.org/wiki/Handbook:Main_Page" class="btn btn-info pull-right">
    <span class="fa fa-fw fa-book"></span> Gentoo Handbook
  </a>
  <p>
    If you are unsure what you need to download, please refer to the <a href="https://wiki.gentoo.org/wiki/Handbook:Main_Page" class="alert-link">Gentoo Handbook</a>
    for the complete installation documentation.<br>
    It explains how you can find the right architecture for your machine and which files you need at what stage of the installation process.
  </p>
</div>

<div id="mirror-select">
  <form class="form-inline">
    <div class="form-group">
      <label for="mirror"><span class="fa fa-fw fa-globe"></span> Download from:</label>
      <select class="form-control" name="mirror" id="mirror">
        <option>distfiles.gentoo.org (Globally distributed)</option>
        <option disabled="disabled">Other mirrors coming soon</option>
      </select>
    </div>
    <!--<button type="button" class="btn btn-default">Use Browser location</button>-->
  </form>
</div>

<br>

{% include "includes/container/start" with class_include="downloads" %}
<div class="row">
{% for key, download in downloadsinfo.items %}
  {% if key == 'amd64' or key == 'x86' %}
      <div class="col-xs-12 col-md-6">
        <h2 id="{{ key }}">{{ key }} {% if download.aka %}<small>aka {{ download.aka }}</small>{% endif %}</h2>
        {% include "includes/downloads/arch-default.html" with download=download key=key%}
      </div>
    {% endif %}
  {% endfor %}
</div>
{% include "includes/container/end" %}

<div class="row">
  <div class="col-md-12">
    <h2>Advanced Choices and Other Architectures</h2>
    <ul class="nav nav-tabs nav-justified" id="other-arches">
    {% for key, download in downloadsinfo.items %}
      <li><a href="#{{ key }}" data-toggle="tag"><strong>{{ key }}</strong></a></li>
    {% endfor %}
    </ul>

    <div class="tab-content other-arches">
    {% for key, download in downloadsinfo.items %}
      <div class="tab-pane active" id="{{ key }}">
        <h3>{{ key }}{% if key == 'amd64' or key == 'x86' %} &ndash; Advanced Choices{% endif %}</h3>
        <div class="row">
          {% include "includes/downloads/arch-main.html" with download=download key=key %}
        </div>
      </div>
    {% endfor %}
    </div>
  </div>
</div>

<h2>Gentoo DVDs and CDs</h2>
<p>
  If you simply don't have the ability to download the large DVD or CD images, then you may wish to purchase a <a href="/inside-gentoo/stores/">Gentoo DVD or CD</a>.
</p>
{% endblock %}