From 8d8224812d1eb071b8ba1df3870cb7a14f4a7339 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 30 May 2018 20:28:48 +0530 Subject: [PATCH] Use modern GA loading code --- docs/_templates/layout.html | 13 +++++++++++++ docs/conf.py | 1 - 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 docs/_templates/layout.html diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html new file mode 100644 index 000000000..d9ec48194 --- /dev/null +++ b/docs/_templates/layout.html @@ -0,0 +1,13 @@ +{% extends "!layout.html" %} + +{%- block extrahead %} + + + + + {{ super() }} +{% endblock %} diff --git a/docs/conf.py b/docs/conf.py index adb8f01b3..ad66c2e62 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -114,7 +114,6 @@ html_theme_options = { 'show_powered_by': False, 'fixed_sidebar': True, 'sidebar_collapse': True, - 'analytics_id': 'UA-20736318-2', 'github_button': False, 'github_banner': True, 'github_user': 'kovidgoyal',