You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
{% extends "!layout.html" %} |
|
{% block document %} |
|
{% if is_release %} |
|
<div class="wy-alert wy-alert-danger" data-nosnippet> |
|
The <a href="/latest/{{ pagename }}.html">latest development version</a> |
|
of this page may be more current than this released {{ version }} version. |
|
</div> |
|
{% endif %} |
|
{{ super() }} |
|
{% endblock %} |
|
{% block menu %} |
|
<div data-nosnippet> |
|
{% include "zversions.html" %} |
|
{{ super() }} |
|
{% if reference_links %} |
|
<div class="toctree-wrapper compound"> |
|
<p class="caption"><span class="caption-text">Reference</span></p> |
|
<ul> |
|
{% for title, url in reference_links.items() %} |
|
<li class="toctree-l1"> |
|
<a class="reference internal" href="{{ url }}">{{ title }}</a> |
|
</li> |
|
{% endfor %} |
|
</ul> |
|
</div> |
|
{% endif %} |
|
</div> |
|
{% endblock %} |
|
{% block extrahead %} |
|
<meta name="color-scheme" content="dark light"> |
|
{# Light/Dark stylesheets added here due to https://github.com/readthedocs/sphinx_rtd_theme/issues/1100 #} |
|
<link rel="stylesheet" href="{{ pathto('_static/css/light.css', 1) }}" type="text/css" media="(prefers-color-scheme: light)"/> |
|
<link rel="stylesheet" href="{{ pathto('_static/css/dark.css', 1) }}" type="text/css" media="(prefers-color-scheme: dark)"/> |
|
{% endblock %}
|
|
|