2008-04-27 20:03:05 +00:00
{% extends "!layout.html" %}
{% block rootrellink %}
2008-12-07 11:54:07 +00:00
< li > < img src = "{{ pathto('_static/py.png', 1) }}" alt = ""
style="vertical-align: middle; margin-top: -1px"/>< / li >
2014-10-29 08:36:15 +01:00
< li > < a href = "https://www.python.org/" > Python< / a > {{ reldelim1 }}< / li >
2012-10-27 22:04:56 +03:00
< li >
{%- if versionswitcher is defined %}
< span class = "version_switcher_placeholder" > {{ release }}< / span >
2016-01-23 12:55:11 +01:00
< a href = "{{ pathto('index') }}" > {% trans %}Documentation{% endtrans %}< / a > {{ reldelim1 }}
2012-10-27 22:04:56 +03:00
{%- else %}
< a href = "{{ pathto('index') }}" > {{ shorttitle }}< / a > {{ reldelim1 }}
{%- endif %}
< / li >
2008-12-07 11:54:07 +00:00
{% endblock %}
2014-03-25 10:12:47 +01:00
{% block relbar1 %} {% if builder != 'qthelp' %} {{ relbar() }} {% endif %} {% endblock %}
{% block relbar2 %} {% if builder != 'qthelp' %} {{ relbar() }} {% endif %} {% endblock %}
2008-12-07 11:54:07 +00:00
{% block extrahead %}
< link rel = "shortcut icon" type = "image/png" href = "{{ pathto('_static/py.png', 1) }}" / >
2012-02-25 19:24:24 +02:00
{% if not embedded %}< script type = "text/javascript" src = "{{ pathto('_static/copybutton.js', 1) }}" > < / script > {% endif %}
2012-10-27 22:04:56 +03:00
{% if versionswitcher is defined and not embedded %}< script type = "text/javascript" src = "{{ pathto('_static/version_switch.js', 1) }}" > < / script > {% endif %}
2008-12-07 11:54:07 +00:00
{{ super() }}
2014-03-25 10:12:47 +01:00
{% if builder == 'qthelp' %}
< style type = "text/css" >
body { background-color: white; }
div.document { background-color: white; }
< / style >
{% endif %}
2008-04-27 20:03:05 +00:00
{% endblock %}
2009-08-04 20:22:43 +00:00
{% block footer %}
< div class = "footer" >
2016-01-23 12:55:11 +01:00
© < a href = "{{ pathto('copyright') }}" > {% trans %}Copyright{% endtrans %}< / a > {{ copyright|e }}.
2009-08-04 20:22:43 +00:00
< br / >
2016-01-23 12:55:11 +01:00
{% trans %}The Python Software Foundation is a non-profit corporation.{% endtrans %}
< a href = "https://www.python.org/psf/donations/" > {% trans %}Please donate.{% endtrans %}< / a >
2009-08-04 20:22:43 +00:00
< br / >
2016-01-23 12:55:11 +01:00
{% trans last_update=last_updated|e %}Last updated on {{ last_update }}.{% endtrans %}
{% trans pathto_bugs=pathto('bugs') %}< a href = "{{ pathto_bugs }}" > Found a bug< / a > ?{% endtrans %}
2010-04-22 22:15:33 +00:00
< br / >
2016-01-23 12:55:11 +01:00
{% trans sphinx_version=sphinx_version|e %}Created using < a href = "http://sphinx.pocoo.org/" > Sphinx< / a > {{ sphinx_version }}.{% endtrans %}
2009-08-04 20:22:43 +00:00
< / div >
{% endblock %}
2010-04-22 22:15:33 +00:00
{% block sidebarsourcelink %}
{%- if show_source and has_source and sourcename %}
< h3 > {{ _('This Page') }}< / h3 >
< ul class = "this-page-menu" >
2016-01-23 12:55:11 +01:00
< li > < a href = "{{ pathto('bugs') }}" > {% trans %}Report a Bug{% endtrans %}< / a > < / li >
2010-04-22 22:15:33 +00:00
< li > < a href = "{{ pathto('_sources/' + sourcename, true)|e }}"
2016-01-23 12:55:11 +01:00
rel="nofollow">{% trans %}Show Source{% endtrans %}< / a > < / li >
2010-04-22 22:15:33 +00:00
< / ul >
{%- endif %}
{% endblock %}