Files
2026-03-06 15:15:41 +01:00

41 lines
1.5 KiB
HTML

{% extends "!layout.html" %}
{%- block rootrellink %}
<li><img src="{{ pathto('_static/' ~ theme_root_icon, 1) }}"
alt="{{ theme_root_icon_alt_text }}"
style="width: 24px; vertical-align: middle; margin-top: -1px"/>
</li>
<li><a href="https://wxpython.org/">Home</a>{{ reldelim2 }}</li>
<li><a href="gallery.html">Gallery</a>{{ reldelim2 }}</li>
<li>{% if theme_root_include_title %}
<a href="{{ pathto('index') }}">{{ shorttitle }}</a>{{ reldelim1 }}
{% endif %}
</li>
{%- endblock %}
{%- block extrahead -%}
<link rel="icon" type="image/svg+xml" href="_static/phoenix_small.svg">
<link rel="icon" type="image/png" sizes="32x32" href="_images/phoenix_small.png">
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="_images/apple-touch-icon.png">
{{ super() }}
{%- endblock -%}
{% block footer %}
<div class="footer">
<span>&copy; {% if theme_copyright_url or hasdoc('copyright') %}
<a href="{% if theme_copyright_url %}{{ theme_copyright_url }}
{% else %}{{ pathto('copyright') }}{% endif %}">
{% endif %}
{% trans %}Copyright{% endtrans %}
{% if theme_copyright_url or hasdoc('copyright') %}
</a>
{% endif %} {{ copyright|e }}.</span>
{% trans sphinx_version=sphinx_version|e %}<span style="white-space: nowrap;" >Created using
<a href="https://www.sphinx-doc.org/">Sphinx</a> {{ sphinx_version }}
and the <a href="https://github.com/python/python-docs-theme/">python-docs-theme</a>.</span>{% endtrans %}
</div>
{% endblock %}