2022-03-18 17:46:08 +01:00
|
|
|
{%- extends "sphinx_rtd_theme/breadcrumbs.html" %}
|
|
|
|
|
|
|
|
{% block breadcrumbs_aside %}
|
|
|
|
{% if not meta or meta.get('github_url') != 'hide' %}
|
|
|
|
{{ super() }}
|
2022-09-10 12:15:58 +02:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.godot-edit-guidelines {
|
|
|
|
font-size: 14px;
|
|
|
|
float: right;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
.godot-edit-guidelines {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<a class="godot-edit-guidelines" href="https://docs.godotengine.org/en/latest/community/contributing/index.html#writing-documentation">
|
|
|
|
Learn how to contribute!
|
|
|
|
</a>
|
2022-03-18 17:46:08 +01:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|