File: titlerow.html

package info (click to toggle)
python-openstackdocstheme 3.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,008 kB
  • sloc: javascript: 8,326; python: 544; makefile: 162; sh: 152
file content (35 lines) | stat: -rw-r--r-- 1,516 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<div class="row docs-title">
  <div class="col-lg-8">
    {%- if theme_sidebar_dropdown == 'os_docs' %}
      <h1>{{ title }}</h1>
    {% else %}
      <h1>OpenStack API Documentation</h1>
    {%- endif %}
  </div>
  <div class="docs-actions">
    {%- block otherversions %}
      {%- if other_versions %}
      <div class="version-dropdown">
        <span>{{ _('version') }}</span>
        <div class="version-dropdown-content">
          {%- for ver in other_versions: %}
            <p><a href="../{{pathto(ver, 1) }}" rel="nofollow">{{ ver }}</a></p>
          {%- endfor %}
        </div>
      </div>
      {%- endif %}
    {%- endblock %}
    {% if prev %}
    <a href="{{ prev.link|e }}"><i class="fa fa-angle-double-left" data-toggle="tooltip" data-placement="top" title="Previous: {{ prev.title|striptags }}"></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|striptags }}"></i></a>
    {% endif %}
    {%- if pdf_link %}
    <a id="pdfLink1" href="" target="_blank" title="Download the manuals as PDF"><i class="fa fa-file-pdf-o" data-toggle="tooltip" data-placement="top" title="Download PDF"></i></a>
    {% endif %}
    {%- if bug_project %}
    <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>
    {% endif %}
  </div>
</div>