mirror of
https://github.com/django-components/django-components.git
synced 2025-08-26 08:54:05 +00:00
12 lines
446 B
HTML
12 lines
446 B
HTML
{#
|
|
Theme override: inject Google site verification meta tag.
|
|
Uses documented extrahead block from Material for MkDocs.
|
|
If token changes, update in mkdocs.yml under extra.google_site_verification.
|
|
#}
|
|
{% extends "base.html" %}
|
|
{% block extrahead %}
|
|
{{ super() }}
|
|
{% if config.extra.google_site_verification %}
|
|
<meta name="google-site-verification" content="{{ config.extra.google_site_verification }}" />
|
|
{% endif %}
|
|
{% endblock %}
|