2020-12-07 11:00:10 -08:00
|
|
|
{%- extends "!layout.html" %}
|
|
|
|
|
|
2021-12-20 09:23:05 -08:00
|
|
|
{% block htmltitle %}
|
|
|
|
|
{{ super() }}
|
2021-12-20 15:55:17 -08:00
|
|
|
<script defer data-domain="docs.datasette.io" src="https://plausible.io/js/plausible.js"></script>
|
2021-12-20 09:23:05 -08:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2020-12-07 11:00:10 -08:00
|
|
|
{% block sidebartitle %}
|
|
|
|
|
|
|
|
|
|
<a href="https://datasette.io/">
|
|
|
|
|
<img src="{{ pathto('_static/' + logo, 1) }}" class="logo" alt="{{ _('Logo') }}"/>
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
{% if theme_display_version %}
|
|
|
|
|
{%- set nav_version = version %}
|
|
|
|
|
{% if READTHEDOCS and current_version %}
|
|
|
|
|
{%- set nav_version = current_version %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if nav_version %}
|
|
|
|
|
<div class="version">
|
|
|
|
|
{{ nav_version }}
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
{% include "searchbox.html" %}
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|