.github
discord
docs
_static
_templates
genindex.html
layout.html
relations.html
ext
extensions
images
locale
Makefile
api.rst
conf.py
discord.rst
faq.rst
index.rst
intro.rst
logging.rst
make.bat
migrating.rst
migrating_to_async.rst
quickstart.rst
requests.inv
version_guarantees.rst
whats_new.rst
examples
.gitignore
.readthedocs.yml
LICENSE
MANIFEST.in
README.ja.rst
README.rst
requirements.txt
setup.py
41 lines
986 B
HTML
41 lines
986 B
HTML
{%- extends "basic/layout.html" %}
|
|
|
|
{% set show_source = False %}
|
|
{% set style = 'style.css' %}
|
|
|
|
{%- block extrahead %}
|
|
{{ super() }}
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
|
|
{% endblock %}
|
|
|
|
{%- block relbar2 %}{% endblock %}
|
|
|
|
{% block header %}
|
|
{{ super() }}
|
|
{% if pagename == 'index' %}
|
|
<div class="indexwrapper">
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
{%- block footer %}
|
|
<div class="footer">
|
|
© Copyright {{ copyright }}.
|
|
{% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx-doc.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
|
|
</div>
|
|
{% if pagename == 'index' %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{%- if READTHEDOCS %}
|
|
<script>
|
|
if (typeof READTHEDOCS_DATA !== 'undefined') {
|
|
if (!READTHEDOCS_DATA.features) {
|
|
READTHEDOCS_DATA.features = {};
|
|
}
|
|
READTHEDOCS_DATA.features.docsearch_disabled = true;
|
|
}
|
|
</script>
|
|
{%- endif %}
|
|
{%- endblock %}
|