1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {% extends "!layout.html" -%}
- {# Refer to https://github.com/readthedocs/sphinx_rtd_theme/blob/master/sphinx_rtd_theme/layout.html #}
- {% block htmltitle -%}
- <title>{{ godot_title_prefix }}{{ title|striptags|e }}{{ titlesuffix }}</title>
- {% endblock -%}
- {% block extrahead -%}
- <meta name="doc_version" content="{{ version }}" />
- <meta name="doc_is_latest" content="{{ godot_is_latest }}" />
- <meta name="doc_pagename" content="{{ pagename }}" />
- {% endblock -%}
- {% block linktags -%}
- <meta name="theme-color" content="#3d8fcc" />
- {{ super() }}
- {% endblock -%}
- {%- block document %}
- <div itemprop="articleBody">
- {% if godot_is_latest or godot_show_article_status %}
- <div class="admonition-grid">
- {% if godot_is_latest %}
- <div class="admonition attention latest-notice">
- <p class="first admonition-title">Attention: Here be dragons</p>
- <p>
- This is the <code class="docutils literal notranslate"><span class="pre">latest</span></code>
- (unstable) version of this documentation, which may document features
- not available in or compatible with released stable versions of Godot.
- </p>
- <p class="last latest-notice-link">
- Checking the stable version of the documentation...
- </p>
- </div>
- {% endif %}
- {% if godot_show_article_status and not godot_is_latest and meta and meta.get('article_outdated') == 'True' %}
- <div class="admonition attention article-status">
- <p class="first admonition-title">Work in progress</p>
- <p>
- The content of this page was not yet updated for Godot
- <code class="docutils literal notranslate">{{ godot_version }}</code>
- and may be <strong>outdated</strong>. If you know how to improve this page or you can confirm
- that it's up to date, feel free to <a href="https://github.com/godotengine/godot-docs">open a pull request</a>.
- </p>
- </div>
- {% endif %}
- </div>
- {% endif %}
- {% block body %}{% endblock %}
- {% if (not meta or meta.get('allow_comments') != 'False') and godot_show_article_comments %}
- <div id="godot-giscus">
- {%- if (theme_prev_next_buttons_location == 'bottom' or theme_prev_next_buttons_location == 'both') and (next or prev) %}
- <div class="rst-footer-buttons" role="navigation">
- {%- if prev %}
- <a href="{{ prev.link|e }}" class="btn btn-neutral float-left" title="{{ prev.title|striptags|e }}" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> {{ _('Previous') }}</a>
- {%- endif %}
- {%- if next %}
- <a href="{{ next.link|e }}" class="btn btn-neutral float-right" title="{{ next.title|striptags|e }}" accesskey="n" rel="next">{{ _('Next') }} <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
- {%- endif %}
- </div>
- {%- endif %}
- <hr>
- <h2>User-contributed notes</h2>
- <p>
- <em>Please read the <a href="https://github.com/godotengine/godot-docs-user-notes/discussions/1">User-contributed notes policy</a> before submitting a comment.</em>
- </p>
- </div>
- {% endif %}
- {%- if self.comments()|trim %}
- <div class="articleComments">
- {%- block comments %}{% endblock %}
- </div>
- {%- endif%}
- </div>
- {%- endblock %}
|