Merge "Adds training-labs landing page"

This commit is contained in:
Jenkins 2016-05-23 22:17:20 +00:00 committed by Gerrit Code Review
commit 26593fb1d4
4 changed files with 65 additions and 0 deletions

View File

@ -90,6 +90,7 @@
{% include 'templates/user_guides.tmpl' %}
{% include 'templates/contributor_guides.tmpl' %}
{% include 'templates/training_guides.tmpl' %}
{% include 'templates/training_labs.tmpl' %}
</div>
</div>
<div class="row docs-contribute-wrapper">

View File

@ -89,6 +89,7 @@
{% include 'templates/user_guides.tmpl' %}
{% include 'templates/contributor_guides.tmpl' %}
{% include 'templates/training_guides.tmpl' %}
{% include 'templates/training_labs.tmpl' %}
</div>
</div>
<div class="row docs-contribute-wrapper">

View File

@ -0,0 +1,5 @@
<div class="docs-link-sections">
<h3 id="training_labs"><i class="training-labs"></i>Training Labs</h3>
<a href="http://docs.openstack.org/training_labs/index.html">Training Labs</a>
<p>Tools for OpenStack Training. Automatic deployment of lean virtualized multi-node openstack cluster.</p>
</div>

View File

@ -0,0 +1,58 @@
{% set scriptdir = '../common/js/' %}
{% set cssdir = '../common/css/' %}
{% extends "templates/base.tmpl" %}
{% block pagetitle %}Training Labs{% endblock %}
{% block title %}
<a href="http://docs.openstack.org/">Documentation</a> &gt; Training Labs
{% endblock %}
{% block content %}
<div class="top-docs-wrapper">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-8 col-sm-8">
<h1>OpenStack Training Labs</h1>
<p>
Training Labs provides an easy way to deploy virtualized OpenStack in a desktop environment. Training
Labs supports all modern Linux, Windows and Mac OSx platforms. You need to have VirtualBox or KVM/libvirt
installed and configured for running Training Labs.
</p>
<p>
Download Training Labs below. Extract the compressed file to a folder and be ready to one-click deployment
of your own OpenStack Training Labs cluster.
</p>
<hr />
<h3>Get Training Labs</h3>
<table>
<tr>
<th>Release</th>
<th>Linux</th>
<th>Mac OSx</th>
<th>Windows</th>
</tr>
<tr>
<th>Master</th>
<td><a href="http://tarballs.openstack.org/training-labs/dist/labs-master.tgz">Master Linux</a></td>
<td><a href="http://tarballs.openstack.org/training-labs/dist/labs-master.tgz">Master Mac OS X</a></td>
<td><a href="http://tarballs.openstack.org/training-labs/dist/labs-master.zip">Master Windows</a></td>
</tr>
<tr>
<th>Liberty</th>
<td><a href="http://tarballs.openstack.org/training-labs/dist/labs-stable-liberty.tgz">Liberty Linux</a></td>
<td><a href="http://tarballs.openstack.org/training-labs/dist/labs-stable-liberty.tgz">Liberty Mac OS X</a></td>
<td><a href="http://tarballs.openstack.org/training-labs/dist/labs-stable-liberty.zip">Liberty Windows</a></td>
</tr>
<tr>
<th>Kilo</th>
<td><a href="http://tarballs.openstack.org/training-labs/dist/labs-stable-kilo.tgz">Kilo Linux</a></td>
<td><a href="http://tarballs.openstack.org/training-labs/dist/labs-stable-kilo.tgz">Kilo Mac OS X</a></td>
<td><a href="http://tarballs.openstack.org/training-labs/dist/labs-stable-kilo.zip">Kilo Windows</a></td>
</tr>
</table>
<p>To generate the scripts manually follow <a href="https://wiki.openstack.org/wiki/Documentation/training-labs#Building_the_cluster">
Training Labs Wiki</a> page.
</p>
</div>
</div>
</div>
</div>
{% endblock content %}