Files
openstack-manuals/www/pike/install/index.html
Doug Hellmann fed641fe66 have the page generator set the series for each page
Instead of setting the series for each page within the page by hand,
have the template rendering code derive the value based on the path to
the template.

Change-Id: I366e809b710e5766c6345d817afc2717eff5e0a8
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2017-07-21 11:21:29 -04:00

76 lines
3.0 KiB
HTML

{% set projects = PROJECT_DATA[series] %}
{% extends "templates/base.tmpl" %}
{% block pagetitle %}Draft Installation Tutorials and Guides{% endblock %}
{% block title %}
<a href="https://docs.openstack.org">Documentation</a> &gt; Draft Installation Tutorials and Guides
{% endblock %}
{% block content %}
<!-- Begin Page Content -->
<div class="top-docs-wrapper">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-8 col-sm-8">
<h1>Draft Installation Tutorials and Guides</h1>
<p>
These documents cover installation procedures for OpenStack
services.
</p>
<p>
If you prefer to install OpenStack using an automated deployment
tool, see the <a href="../deploy/">Deployment Guides.</a>
</p>
</div>
</div>
</div>
</div>
<div class="mid-docs-wrapper" id="docs-main-body">
<div class="container">
<div class="row docs-toc">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="docs-link-sections services-section">
<h3><i class="fa fa-cogs"></i>Installation Tutorial</h3>
<p>The following tutorial provides information about getting started,
setting up your environment, and launching your instance.
</p>
<p>
<a class="overview-btn docs-btn" style="width:80%;text-transform:initial;"
href="/install-guide/">
OpenStack Installation Tutorial
</a>
</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="docs-link-sections">
<h3><i class="fa fa-cogs"></i>Project Installation Guides</h3>
<ul>
{% for project in projects|sort(attribute='service') -%}
{% if project.type in ['service', 'other'] and project.has_install_guide %}
<li><a href="/{{project.name}}/{{series}}/install/">{{project.service}} ({{project.name|title}})</a></li>
{% endif %}
{%- endfor %}
</ul>
</div>
</div>
<div class="row docs-contribute-wrapper">
<div class="col-lg-12">
<p>Documentation treated like code, powered by the community - interested?</p>
<a href="/contributor-guide/" class="overview-btn contribute-btn">How To Contribute <i class="fa fa-chevron-right"></i></a>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
var elements = document.getElementsByClassName("os-box");
var maximum = Number.MIN_VALUE;
for (var i = 0, len = elements.length; i < len; i++) {
if(elements[i].offsetHeight>maximum){
maximum = elements[i].offsetHeight;
}
}
$('.os-box').height(maximum);
</script>
{% endblock content %}