diff options
Diffstat (limited to 'docs/_templates/layout.html')
| -rw-r--r-- | docs/_templates/layout.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html new file mode 100644 index 00000000..68161509 --- /dev/null +++ b/docs/_templates/layout.html @@ -0,0 +1,29 @@ +{%- 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 %} +{%- endblock %} |