5 Master layout template for Sphinx themes.
7 :copyright: Copyright
2007-
2013 by the Sphinx team, see AUTHORS.
8 :license: BSD, see LICENSE for details.
11 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
12 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
14 {%- set reldelim1 = reldelim1 is not defined and '
»' or reldelim1 %}
15 {%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %}
16 {%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and
18 {%- set url_root = pathto('',
1) %}
20 {%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
21 {%- if not embedded and docstitle %}
22 {%- set titlesuffix =
" — "|safe + docstitle|e %}
24 {%- set titlesuffix =
"" %}
29 <h3>{{ _('Navigation') }}
</h3>
31 {%- for rellink in rellinks %}
32 <li class=
"right" {% if loop.first %}
style=
"margin-right: 10px"{% endif %}
>
33 <a href=
"{{ pathto(rellink[0]) }}" title=
"{{ rellink[1]|striptags|e }}"
34 {{ accesskey(rellink[
2]) }}
>{{ rellink[
3] }}
</a>
35 {%- if not loop.first %}{{ reldelim2 }}{% endif %}
</li>
37 {%- block rootrellink %}
38 <li><a href=
"http://pyx.sourceforge.net">PyX Homepage
</a>{{ reldelim1 }}
</li>
39 <li><a href=
"{{ pathto(master_doc) }}">{{ shorttitle|e }}
</a>{{ reldelim1 }}
</li>
41 {%- for parent in parents %}
42 <li><a href=
"{{ parent.link|e }}" {% if loop.last %}{{ accesskey(
"U") }}{% endif %}
>{{ parent.title }}
</a>{{ reldelim1 }}
</li>
44 <li>{{ title|striptags|e }}
</li>
49 {%- macro sidebar() %}
50 {%- if render_sidebar %}
51 <div class=
"sphinxsidebar">
52 <div class=
"sphinxsidebarwrapper">
53 {%- for sidebartemplate in sidebars %}
54 {%- macro thissidebar() %}{%- include sidebartemplate -%}{% endmacro -%}
55 {% if thissidebar()|length %}
56 <div class=
"sidebarbox">{{ thissidebar() }}
</div>
65 <script type=
"text/javascript">
66 var DOCUMENTATION_OPTIONS
= {
67 URL_ROOT
: '{{ url_root }}',
68 VERSION
: '{{ release|e }}',
69 COLLAPSE_INDEX
: false,
70 FILE_SUFFIX
: '{{ '' if no_search_suffix else file_suffix }}',
71 HAS_SOURCE
: {{ has_source
|lower
}}
74 {%- for scriptfile in script_files %}
75 <script type=
"text/javascript" src=
"{{ pathto(scriptfile, 1) }}"></script>
80 <link rel=
"stylesheet" href=
"{{ pathto('_static/' + style, 1) }}" type=
"text/css" />
81 <link rel=
"stylesheet" href=
"{{ pathto('_static/pygments.css', 1) }}" type=
"text/css" />
82 {%- for cssfile in css_files %}
83 <link rel=
"stylesheet" href=
"{{ pathto(cssfile, 1) }}" type=
"text/css" />
87 <html xmlns=
"http://www.w3.org/1999/xhtml">
89 <meta http-equiv=
"Content-Type" content=
"text/html; charset={{ encoding }}" />
91 {%- block htmltitle %}
92 <title>{{ title|striptags|e }}{{ titlesuffix }}
</title>
95 {%- if not embedded %}
97 {%- if use_opensearch %}
98 <link rel=
"search" type=
"application/opensearchdescription+xml"
99 title=
"{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}"
100 href=
"{{ pathto('_static/opensearch.xml', 1) }}"/>
103 <link rel=
"shortcut icon" href=
"{{ pathto('_static/' + favicon, 1) }}"/>
106 {%- block linktags %}
107 {%- if hasdoc('about') %}
108 <link rel=
"author" title=
"{{ _('About these documents') }}" href=
"{{ pathto('about') }}" />
110 {%- if hasdoc('genindex') %}
111 <link rel=
"index" title=
"{{ _('Index') }}" href=
"{{ pathto('genindex') }}" />
113 {%- if hasdoc('search') %}
114 <link rel=
"search" title=
"{{ _('Search') }}" href=
"{{ pathto('search') }}" />
116 {%- if hasdoc('copyright') %}
117 <link rel=
"copyright" title=
"{{ _('Copyright') }}" href=
"{{ pathto('copyright') }}" />
119 <link rel=
"top" title=
"{{ docstitle|e }}" href=
"{{ pathto('index') }}" />
121 <link rel=
"up" title=
"{{ parents[-1].title|striptags|e }}" href=
"{{ parents[-1].link|e }}" />
124 <link rel=
"next" title=
"{{ next.title|striptags|e }}" href=
"{{ next.link|e }}" />
127 <link rel=
"prev" title=
"{{ prev.title|striptags|e }}" href=
"{{ prev.link|e }}" />
130 {%- block extrahead %} {% endblock %}
133 {%- block header %}{% endblock %}
135 <div class=
"relatedtop">
136 {%- block relbar1 %}{{ relbar() }}{% endblock %}
140 {%- block sidebar1 %} {# possible location for sidebar #} {% endblock %}
142 <div class=
"document">
143 {%- block document %}
144 <div class=
"documentwrapper">
145 {%- if render_sidebar %}
146 <div class=
"bodywrapper">
149 {% block body %} {% endblock %}
151 {%- if render_sidebar %}
157 {%- block sidebar2 %}{{ sidebar() }}{% endblock %}
158 <div class=
"clearer"></div>
162 <div class=
"relatedbottom">
163 {%- block relbar2 %}{{ relbar() }}{% endblock %}
168 {%- if show_copyright %}
169 {%- if hasdoc('copyright') %}
170 {% trans path=pathto('copyright'), copyright=copyright|e %}
© <a href=
"{{ path }}">Copyright
</a> {{ copyright }}.{% endtrans %}
172 {% trans copyright=copyright|e %}
© Copyright {{ copyright }}.{% endtrans %}
175 {%- if last_updated %}
176 {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
178 {%- if show_sphinx %}
179 {% trans sphinx_version=sphinx_version|e %}Created using
<a href=
"http://sphinx-doc.org/">Sphinx
</a> {{ sphinx_version }}.{% endtrans %}