summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-root/_templates/layout.html
blob: db685b0205e04df92818242904cda52ee3a4ba88 (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 %}