Georg Brandl | 4f1f36b | 2008-04-27 20:03:05 +0000 | [diff] [blame] | 1 | {% extends "!layout.html" %} |
| 2 | {% block rootrellink %} |
Georg Brandl | 6212971 | 2008-12-07 11:54:07 +0000 | [diff] [blame] | 3 | <li><img src="{{ pathto('_static/py.png', 1) }}" alt="" |
| 4 | style="vertical-align: middle; margin-top: -1px"/></li> |
Georg Brandl | 42bf486 | 2014-10-29 08:36:15 +0100 | [diff] [blame] | 5 | <li><a href="https://www.python.org/">Python</a>{{ reldelim1 }}</li> |
Ezio Melotti | 3d07206 | 2012-10-27 22:04:56 +0300 | [diff] [blame] | 6 | <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 Brandl | 6212971 | 2008-12-07 11:54:07 +0000 | [diff] [blame] | 14 | {% endblock %} |
Georg Brandl | 0fef31e | 2014-03-25 10:12:47 +0100 | [diff] [blame] | 15 | {% block relbar1 %} {% if builder != 'qthelp' %} {{ relbar() }} {% endif %} {% endblock %} |
| 16 | {% block relbar2 %} {% if builder != 'qthelp' %} {{ relbar() }} {% endif %} {% endblock %} |
Georg Brandl | 6212971 | 2008-12-07 11:54:07 +0000 | [diff] [blame] | 17 | {% block extrahead %} |
| 18 | <link rel="shortcut icon" type="image/png" href="{{ pathto('_static/py.png', 1) }}" /> |
Ezio Melotti | f5ea48f | 2012-02-25 19:24:24 +0200 | [diff] [blame] | 19 | {% if not embedded %}<script type="text/javascript" src="{{ pathto('_static/copybutton.js', 1) }}"></script>{% endif %} |
Ezio Melotti | 3d07206 | 2012-10-27 22:04:56 +0300 | [diff] [blame] | 20 | {% if versionswitcher is defined and not embedded %}<script type="text/javascript" src="{{ pathto('_static/version_switch.js', 1) }}"></script>{% endif %} |
Georg Brandl | 6212971 | 2008-12-07 11:54:07 +0000 | [diff] [blame] | 21 | {{ super() }} |
Georg Brandl | 0fef31e | 2014-03-25 10:12:47 +0100 | [diff] [blame] | 22 | {% if builder == 'qthelp' %} |
| 23 | <style type="text/css"> |
| 24 | body { background-color: white; } |
| 25 | div.document { background-color: white; } |
| 26 | </style> |
| 27 | {% endif %} |
Georg Brandl | 4f1f36b | 2008-04-27 20:03:05 +0000 | [diff] [blame] | 28 | {% endblock %} |
Georg Brandl | 4809c73 | 2009-08-04 20:22:43 +0000 | [diff] [blame] | 29 | {% block footer %} |
| 30 | <div class="footer"> |
| 31 | © <a href="{{ pathto('copyright') }}">Copyright</a> {{ copyright|e }}. |
| 32 | <br /> |
Ezio Melotti | 3d07206 | 2012-10-27 22:04:56 +0300 | [diff] [blame] | 33 | The Python Software Foundation is a non-profit corporation. |
Georg Brandl | 42bf486 | 2014-10-29 08:36:15 +0100 | [diff] [blame] | 34 | <a href="https://www.python.org/psf/donations/">Please donate.</a> |
Georg Brandl | 4809c73 | 2009-08-04 20:22:43 +0000 | [diff] [blame] | 35 | <br /> |
| 36 | Last updated on {{ last_updated|e }}. |
Georg Brandl | e11d85c | 2010-04-22 22:15:33 +0000 | [diff] [blame] | 37 | <a href="{{ pathto('bugs') }}">Found a bug</a>? |
| 38 | <br /> |
Georg Brandl | 4809c73 | 2009-08-04 20:22:43 +0000 | [diff] [blame] | 39 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version|e }}. |
| 40 | </div> |
| 41 | {% endblock %} |
Georg Brandl | e11d85c | 2010-04-22 22:15:33 +0000 | [diff] [blame] | 42 | {% block sidebarsourcelink %} |
| 43 | {%- if show_source and has_source and sourcename %} |
| 44 | <h3>{{ _('This Page') }}</h3> |
| 45 | <ul class="this-page-menu"> |
| 46 | <li><a href="{{ pathto('bugs') }}">Report a Bug</a></li> |
| 47 | <li><a href="{{ pathto('_sources/' + sourcename, true)|e }}" |
| 48 | rel="nofollow">Show Source</a></li> |
| 49 | </ul> |
| 50 | {%- endif %} |
| 51 | {% endblock %} |