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> |
| 5 | <li><a href="{{ pathto('index') }}">{{ shorttitle }}</a>{{ reldelim1 }}</li> |
| 6 | {% endblock %} |
| 7 | {% block extrahead %} |
| 8 | <link rel="shortcut icon" type="image/png" href="{{ pathto('_static/py.png', 1) }}" /> |
| 9 | {{ super() }} |
Georg Brandl | 4f1f36b | 2008-04-27 20:03:05 +0000 | [diff] [blame] | 10 | {% endblock %} |
Georg Brandl | 4809c73 | 2009-08-04 20:22:43 +0000 | [diff] [blame] | 11 | {% block footer %} |
| 12 | <div class="footer"> |
| 13 | © <a href="{{ pathto('copyright') }}">Copyright</a> {{ copyright|e }}. |
| 14 | <br /> |
| 15 | The Python Software Foundation is a non-profit corporation. |
| 16 | <a href="http://www.python.org/psf/donations/">Please donate.</a> |
| 17 | <br /> |
| 18 | Last updated on {{ last_updated|e }}. |
Georg Brandl | e11d85c | 2010-04-22 22:15:33 +0000 | [diff] [blame^] | 19 | <a href="{{ pathto('bugs') }}">Found a bug</a>? |
| 20 | <br /> |
Georg Brandl | 4809c73 | 2009-08-04 20:22:43 +0000 | [diff] [blame] | 21 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version|e }}. |
| 22 | </div> |
| 23 | {% endblock %} |
Georg Brandl | e11d85c | 2010-04-22 22:15:33 +0000 | [diff] [blame^] | 24 | {% block sidebarsourcelink %} |
| 25 | {%- if show_source and has_source and sourcename %} |
| 26 | <h3>{{ _('This Page') }}</h3> |
| 27 | <ul class="this-page-menu"> |
| 28 | <li><a href="{{ pathto('bugs') }}">Report a Bug</a></li> |
| 29 | <li><a href="{{ pathto('_sources/' + sourcename, true)|e }}" |
| 30 | rel="nofollow">Show Source</a></li> |
| 31 | </ul> |
| 32 | {%- endif %} |
| 33 | {% endblock %} |