Rename the "doc" folder to "docs" to be consistent with the tox env name. RTD also seems to expect "docs" as its first choice, even though it will discover "doc" as well.
17 lines
609 B
HTML
Executable File
17 lines
609 B
HTML
Executable File
{%- extends "basic/layout.html" %}
|
|
{%- block extrahead %}
|
|
{{ super() }}
|
|
{% if theme_touch_icon %}
|
|
<link rel="apple-touch-icon" href="{{ pathto('_static/' ~ theme_touch_icon, 1) }}" />
|
|
{% endif %}
|
|
<link media="only screen and (max-device-width: 480px)" href="{{
|
|
pathto('_static/small_flask.css', 1) }}" type= "text/css" rel="stylesheet" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
|
|
{% endblock %}
|
|
{%- block relbar2 %}{% endblock %}
|
|
{%- block footer %}
|
|
<div class="footer">
|
|
© Copyright {{ copyright }}.
|
|
</div>
|
|
{%- endblock %}
|