summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/templates/pages/downloads/index.html')
-rw-r--r--python/templates/pages/downloads/index.html75
1 files changed, 75 insertions, 0 deletions
diff --git a/python/templates/pages/downloads/index.html b/python/templates/pages/downloads/index.html
new file mode 100644
index 0000000..1fb7e9f
--- /dev/null
+++ b/python/templates/pages/downloads/index.html
@@ -0,0 +1,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 %} \ No newline at end of file