summaryrefslogtreecommitdiff
path: root/tests/root/_templates/layout.html
blob: 82125df8e23311002b5ca04a21bfa854939d2a71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "!layout.html" %}

{% block extrahead %}
{# html_context variable from conf.py #}
<meta name="hc" content="{{ hckey }}" />
{# html_context variable from confoverrides (as if given on cmdline) #}
<meta name="hc_co" content="{{ hckey_co }}" />
{{ super() }}
{% endblock %}

{% block sidebartoc %}
{# display global TOC in addition to local TOC #}
{{ super() }}
{{ toctree(collapse=False, maxdepth=-1) }}
{% endblock %}