blob: db4a386e89ff9729adcbe91700a157979ce669ab [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>
Georg Brandlaf265f42008-12-07 15:06:20 +00006 <li><a href="{{ pathto('index') }}">{{ shorttitle }}</a>{{ reldelim1 }}</li>
7{% endblock %}
8{% block extrahead %}
9 <link rel="shortcut icon" type="image/png" href="{{ pathto('_static/py.png', 1) }}" />
Ezio Melotti43427222012-02-25 19:24:24 +020010 {% if not embedded %}<script type="text/javascript" src="{{ pathto('_static/copybutton.js', 1) }}"></script>{% endif %}
Georg Brandlaf265f42008-12-07 15:06:20 +000011{{ super() }}
Georg Brandle7570052008-05-03 20:52:18 +000012{% endblock %}
Georg Brandl3eb562b2009-08-04 20:25:54 +000013{% block footer %}
14 <div class="footer">
15 &copy; <a href="{{ pathto('copyright') }}">Copyright</a> {{ copyright|e }}.
16 <br />
17 The Python Software Foundation is a non-profit corporation.
18 <a href="http://www.python.org/psf/donations/">Please donate.</a>
19 <br />
20 Last updated on {{ last_updated|e }}.
Georg Brandl582c0a62010-04-22 23:20:19 +000021 <a href="{{ pathto('bugs') }}">Found a bug</a>?
22 <br />
Georg Brandl3eb562b2009-08-04 20:25:54 +000023 Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version|e }}.
24 </div>
25{% endblock %}
Georg Brandl582c0a62010-04-22 23:20:19 +000026{% block sidebarsourcelink %}
27{%- if show_source and has_source and sourcename %}
28<h3>{{ _('This Page') }}</h3>
29<ul class="this-page-menu">
30 <li><a href="{{ pathto('bugs') }}">Report a Bug</a></li>
31 <li><a href="{{ pathto('_sources/' + sourcename, true)|e }}"
32 rel="nofollow">Show Source</a></li>
33</ul>
34{%- endif %}
35{% endblock %}