File: layout.html

package info (click to toggle)
rally 5.0.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,368 kB
  • sloc: python: 42,541; javascript: 487; sh: 198; makefile: 192; xml: 43
file content (47 lines) | stat: -rw-r--r-- 2,429 bytes parent folder | download | duplicates (2)
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
36
37
38
39
40
41
42
43
44
45
46
47
{% extends "openstack/layout.html" %}
{% set show_source = False %}
{% set css_files = css_files + ["_static/img.css"] %}

{# sidebarlogo is a top block in sidebar. Let's use it to display home link #}
{%- block sidebarlogo %}
    <h3><a href="{{ pathto(master_doc) }}">What is Rally?</a></h3>
{%- endblock %}

{# Display global toc instead of local #}
{%- block sidebartoc %}
    <h3>Contents</h3>
    {{ toctree() }}
{%- endblock %}

{# Turn off sections "Previous topic" and "Next topic" #}
{%- block sidebarrel %}{% endblock %}

{% block projectsource %}
    <h3>Contacts</h3>
    <p class="topless" style="color: black">
        <b>IRC</b> <br /><a href="ircs://irc.oftc.net:6697/#openstack-rally">#openstack-rally</a> channel at OFTC<br />
        <b>E-mail</b> <br /><a href="mailto:openstack-discuss@lists.openstack.org?subject=[Rally]">openstack-discuss@lists.openstack.org</a> with "[Rally]" tag in subject
    </p>
    <h3>Useful links</h3>
    <ul>
        <li><a href="{{ pathto(master_doc) }}">Documentation</a></li>
        <li><a href="http://rally.readthedocs.org/en/latest/">Documentation at RTD</a></li>
        <li><a href="http://opendev.org/openstack/rally">Source</a></li>
        <li><a href="https://github.com/openstack/rally">GitHub mirror</a></li>
        <li><a href="http://bugs.launchpad.net/rally">Bug tracker</a></li>
        <li><a href="https://docs.google.com/a/mirantis.com/spreadsheets/d/16DXpfbqvlzMFaqaXAcJsBzzpowb_XpymaK2aFY2gA2g">RoadMap</a></li>
        <li><a href="https://launchpad.net/rally">Launchpad page</a></li>
    </ul>
{% endblock %}

{# copy-pasted from original theme and extended with Rally links #}
{%- block header_navigation %}
<li><a href="http://www.openstack.org/" title="Go to the Home page" class="link">Home</a></li>
<li><a href="http://www.openstack.org/projects/" title="Go to the Projects page">Projects</a></li>
<li><a href="http://www.openstack.org/user-stories/" title="Go to the User Stories page" class="link">User Stories</a></li>
<li><a href="http://www.openstack.org/community/" title="Go to the Community page" class="link">Community</a></li>
<li><a href="http://www.openstack.org/blog/" title="Go to the OpenStack Blog">Blog</a></li>
<li><a href="http://wiki.openstack.org/" title="Go to the OpenStack Wiki">Wiki</a></li>
<li><a href="{{ pathto(master_doc) }}" title="Go to Rally Documentation" class="current">Documentation</a></li>
{% endblock %}