4017c3e019
Instead of hard-coding paths to the css, js, and images directories let the template generator compute those and pass them to the template context. Change-Id: I27a55deeb68136fa826496ec3d0223a303346724 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
106 lines
3.4 KiB
HTML
106 lines
3.4 KiB
HTML
{% set series = 'latest' %}
|
|
{% set projects = PROJECT_DATA[series] %}
|
|
{% extends "templates/base.tmpl" %}
|
|
{% block pagetitle %}Services and Libraries{% endblock %}
|
|
{% block title %}
|
|
<a href="https://docs.openstack.org">Documentation</a> > Services and Libraries
|
|
{% 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>OpenStack Projects</h1>
|
|
<p>
|
|
This page contains project-specific documentation for
|
|
OpenStack services and libraries.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="mid-docs-wrapper" id="docs-main-body">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
</div>
|
|
</div>
|
|
<div class="row docs-toc">
|
|
<div class="col-lg-6 col-md-6 col-sm-6">
|
|
|
|
<div class="docs-link-sections">
|
|
<h3><i class="fa fa-cog"></i> OpenStack Services</h3>
|
|
{% for project in projects|sort(attribute='service') %}
|
|
{% if project.type in ['service', 'other'] %}
|
|
<a href="/{{project.name}}/latest/">
|
|
{{project.service}} ({{project.name}})</a><br />
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="docs-link-sections">
|
|
<h3><i class="fa fa-cog"></i> Bare Metal Sub Projects</h3>
|
|
{% for project in projects|sort(attribute='service') %}
|
|
{% if project.type == 'baremetal' %}
|
|
<a href="/{{project.name}}/latest/">
|
|
{{project.service}} ({{project.name}})</a><br />
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="docs-link-sections">
|
|
<h3><i class="fa fa-cog"></i> Networking Sub Projects</h3>
|
|
{% for project in projects|sort(attribute='service') %}
|
|
{% if project.type == 'networking' %}
|
|
<a href="/{{project.name}}/latest/">
|
|
{{project.service}} ({{project.name}})</a><br />
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="docs-link-sections">
|
|
<h3><i class="fa fa-cog"></i> Deployment Projects</h3>
|
|
{% for project in projects|sort(attribute='service') %}
|
|
{% if project.type == 'deployment' %}
|
|
<a href="/{{project.name}}/latest/">
|
|
{{project.service}}</a><br />
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="docs-link-sections">
|
|
<h3><i class="fa fa-cog"></i> Contributor Tools</h3>
|
|
{% for project in projects|sort(attribute='name') %}
|
|
{% if project.type in ['tool'] %}
|
|
<a href="/{{project.name}}/latest/">{{project.name}}</a><br />
|
|
<p>{{project.service}} </p>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</div>
|
|
<div class="col-lg-6 col-md-6 col-sm-6">
|
|
|
|
<div class="docs-link-sections">
|
|
<h3><i class="fa fa-pencil"></i> Using Libraries</h3>
|
|
{% for project in projects|sort(attribute='name') %}
|
|
{% if project.type == 'library' %}
|
|
<a href="/{{project.name}}/latest/">{{project.name}}</a><br />
|
|
<p>{{project.service}}</p>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</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>
|
|
|
|
{% endblock content %}
|