blob: 4b16b3f741ef3ec255a84b241fec0d14cbb13a0b [file] [log] [blame]
Georg Brandle7570052008-05-03 20:52:18 +00001{% extends "!layout.html" %}
2{% block rootrellink %}
Georg Brandlaf265f42008-12-07 15:06:20 +00003 <li><img src="{{ pathto('_static/py.png', 1) }}" alt=""
4 style="vertical-align: middle; margin-top: -1px"/></li>
Georg Brandlab712142012-03-25 20:31:57 +02005 <li><a href="http://www.python.org/">Python</a>{{ reldelim1 }}</li>
Ezio Melotti380ce652012-10-27 22:09:16 +03006 <li>
7 {%- if versionswitcher is defined %}
8 <span class="version_switcher_placeholder">{{ release }}</span>
9 <a href="{{ pathto('index') }}">Documentation</a>{{ reldelim1 }}
10 {%- else %}
11 <a href="{{ pathto('index') }}">{{ shorttitle }}</a>{{ reldelim1 }}
12 {%- endif %}
13 </li>
Georg Brandlaf265f42008-12-07 15:06:20 +000014{% endblock %}
15{% block extrahead %}
16 <link rel="shortcut icon" type="image/png" href="{{ pathto('_static/py.png', 1) }}" />
Ezio Melotti43427222012-02-25 19:24:24 +020017 {% if not embedded %}<script type="text/javascript" src="{{ pathto('_static/copybutton.js', 1) }}"></script>{% endif %}
Ezio Melotti380ce652012-10-27 22:09:16 +030018 {% if versionswitcher is defined and not embedded %}<script type="text/javascript" src="{{ pathto('_static/version_switch.js', 1) }}"></script>{% endif %}
Georg Brandlaf265f42008-12-07 15:06:20 +000019{{ super() }}
Georg Brandle7570052008-05-03 20:52:18 +000020{% endblock %}
Georg Brandl3eb562b2009-08-04 20:25:54 +000021{% block footer %}
22 <div class="footer">
23 &copy; <a href="{{ pathto('copyright') }}">Copyright</a> {{ copyright|e }}.
24 <br />
Ezio Melotti380ce652012-10-27 22:09:16 +030025 The Python Software Foundation is a non-profit corporation.
Georg Brandl3eb562b2009-08-04 20:25:54 +000026 <a href="http://www.python.org/psf/donations/">Please donate.</a>
27 <br />
28 Last updated on {{ last_updated|e }}.
Georg Brandl582c0a62010-04-22 23:20:19 +000029 <a href="{{ pathto('bugs') }}">Found a bug</a>?
30 <br />
Georg Brandl3eb562b2009-08-04 20:25:54 +000031 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version|e }}.
32 </div>
33{% endblock %}
Georg Brandl582c0a62010-04-22 23:20:19 +000034{% block sidebarsourcelink %}
35{%- if show_source and has_source and sourcename %}
36<h3>{{ _('This Page') }}</h3>
37<ul class="this-page-menu">
38 <li><a href="{{ pathto('bugs') }}">Report a Bug</a></li>
39 <li><a href="{{ pathto('_sources/' + sourcename, true)|e }}"
40 rel="nofollow">Show Source</a></li>
41</ul>
42{%- endif %}
43{% endblock %}