mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
9 lines
281 B
HTML
9 lines
281 B
HTML
{% 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 %}
|