From 28cbe39d9bbddf6f3ddb35e17db96fff90a87af9 Mon Sep 17 00:00:00 2001 From: "a.krantz" Date: Mon, 28 Oct 2024 14:42:21 +0000 Subject: [PATCH] Add Google site verification meta tag --- docs/_templates/layout.html | 7 +++++++ docs/conf.py | 4 ++++ 2 files changed, 11 insertions(+) create mode 100644 docs/_templates/layout.html diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html new file mode 100644 index 0000000..4558c92 --- /dev/null +++ b/docs/_templates/layout.html @@ -0,0 +1,7 @@ + +{% extends "!layout.html" %} + +{% block extrahead %} + +{{ super() }} +{% endblock %} \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 0ccb328..0d9c04a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,6 +57,10 @@ # html_theme = "sphinx_rtd_theme" +html_context = {"google_site_verification": "M-YV4bEhpyyWVOBQB9VLsSCjKfqO_UpvTBMJ7DS5t_U"} + +templates_path = ["_templates"] + # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css".