Re-add next/previous buttons at bottom of page. Add also the "Report a Bug" button. These all exist already on the top of the page, now they are added on the bottom as well for easy navigation. Co-Authored-By: Anne Gentle <anne@openstack.org> Change-Id: Ib06a70b0333fa91cc5b93ba14fde409719fcb46b
96 lines
4.0 KiB
HTML
96 lines
4.0 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">
|
|
{% include 'titlerow.html' %}
|
|
<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="docs-actions">
|
|
{% if prev %}
|
|
<a href="{{ prev.link|e }}"><i class="fa fa-angle-double-left" data-toggle="tooltip" data-placement="top" title="Previous: {{ prev.title }}"></i></a>
|
|
{% endif %}
|
|
{% if next %}
|
|
<a href="{{ next.link|e }}"><i class="fa fa-angle-double-right" data-toggle="tooltip" data-placement="top" title="Next: {{ next.title }}"></i></a>
|
|
{% endif %}
|
|
<a id="logABugLink3" href="" target="_blank" title="Found an error? Report a bug against this page"><i class="fa fa-bug" data-toggle="tooltip" data-placement="top" title="Report a Bug"></i></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">
|
|
{% include 'license_cc.html' %}
|
|
</div>
|
|
<div class="col-lg-4 col-md-4 col-sm-4 docs-actions-wrapper">
|
|
<!-- ID buglinkbottom added so that pre-filled doc bugs
|
|
are sent to Launchpad projects related to the document -->
|
|
<a href="#" id="logABugLink2" 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 'sidebartoc.html' %}
|
|
|
|
</div>
|
|
</div>
|
|
<!-- End Page Content -->
|
|
|
|
<!-- Footer -->
|
|
{% include 'footer.html' %}
|
|
|
|
<!-- Scripts in: static directory-->
|
|
{% include 'script_footer.html' %}
|
|
|
|
</body>
|
|
</html>
|