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