103 lines
4.5 KiB
HTML
103 lines
4.5 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
|
|
{% block header %}{% endblock %}
|
|
<title>OpenStack Docs: {{ title }}</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- CSS references are in the css.html template -->
|
|
{% include 'css.html' %}
|
|
{# FAVICON #}
|
|
{% if favicon %}
|
|
<link rel="shortcut icon" href="{{ pathto('_static/favicon.ico') }}"/>
|
|
{% endif %}
|
|
</head>
|
|
<body>
|
|
{% include 'header.html' %}
|
|
<!-- Begin Page Content -->
|
|
<div class="container docs-book-wrapper">
|
|
<div class="row">
|
|
<div class="col-lg-9 col-md-8 col-sm-8 col-lg-push-3 col-md-push-4 col-sm-push-4">
|
|
<!-- Row with title and buttons-->
|
|
<div class="row">
|
|
<div class="col-lg-8">
|
|
<h2>{{ title }}</h2>
|
|
</div>
|
|
<div class="col-lg-4">
|
|
<div class="docs-actions">
|
|
<a href="#"><i class="fa fa-rss" data-toggle="tooltip" data-placement="top" title="RSS Feed"></i></a>
|
|
<a href="#"><i class="fa fa-cloud-download" data-toggle="tooltip" data-placement="top" title="Download PDF"></i></a>
|
|
<a href="#"><i class="fa fa-info-circle" data-toggle="tooltip" data-placement="top" title="Toggle Definitions" id="toggle-definitions"></i></a>
|
|
<a href="http://bugs.launchpad.net"><i class="fa fa-bug" data-toggle="tooltip" data-placement="top" title="Report a Bug"></i></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row docs-byline">
|
|
<div class="docs-updated">
|
|
updated: {{ last_updated }} | release: {{ release }}
|
|
</div>
|
|
<a href="http://git.openstack.org/" class="docs-edit">
|
|
<i class="fa fa-pencil"></i> suggest edits
|
|
</a>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="docs-top-contents">
|
|
<h5>Contents</h5>
|
|
{{ toc }}
|
|
</div>
|
|
<div class="docs-body">
|
|
{% block body %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="docs-tags">
|
|
<a href="#" class="docs-tag">Network Time Protocol (NTP)</a>
|
|
<a href="#" class="docs-tag">Security</a>
|
|
<a href="#" class="docs-tag">Conceptual architecture</a>
|
|
</div>
|
|
<div class="row docs-byline bottom">
|
|
<div class="docs-updated">
|
|
updated: {{ last_updated }} | release: {{ release }}
|
|
</div>
|
|
<a href="http://git.openstack.org/" class="docs-edit">
|
|
<i class="fa fa-pencil"></i> suggest edits
|
|
</a>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-8 col-md-8 col-sm-8 docs-license">
|
|
<img src="_static/images/docs/license.jpg" alt="Creative Commons Attribution Share Alike 3.0 License"/>
|
|
<p>
|
|
Except where otherwise noted, this document is licensed under Creative Commons Attribution Share Alike 3.0 License
|
|
<a href="#">http://creativecommons.org/licenses/by-sa/3.0/legalcode</a>.
|
|
</p>
|
|
<p>
|
|
<a href="http://www.openstack.org/legal">See All Legal Notices</a>
|
|
</p>
|
|
</div>
|
|
<div class="col-lg-4 col-md-4 col-sm-4 docs-actions-wrapper">
|
|
<a href="#" class="docs-footer-actions">
|
|
<i class="fa fa-bug"></i>found an error? report a bug
|
|
</a>
|
|
<a href="http://ask.openstack.org" class="docs-footer-actions">
|
|
<i class="fa fa-question-circle"></i>questions? <a href="http://ask.openstack.org/">ask.openstack.org</a>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% include 'docsreleases.html' %}
|
|
|
|
</div>
|
|
</div>
|
|
<!-- End Page Content -->
|
|
|
|
<!-- Footer -->
|
|
{% include 'footer.html' %}
|
|
<!-- Scripts in: static directory-->
|
|
{% include 'script_footer.html' %}
|
|
</body>
|
|
</html>
|