openstackdocstheme/openstackdocstheme/theme/openstackdocs/titlerow.html

19 lines
820 B
HTML

<div class="row">
<div class="col-lg-8">
{%- if theme_sidebar_dropdown == 'os_docs' %}
<h2>{{ title }}</h2>
{% else %}
<h2>OpenStack API Documentation</h2>
{%- endif %}
</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="logABugLink1" 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>