We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0303cf2 commit 199dceaCopy full SHA for 199dcea
.gitignore
@@ -15,9 +15,6 @@ _build/
15
# PyCharm stuff
16
.idea/
17
18
-# Sphinx template
19
-docs/source/.templates/layout.html
20
-
21
# Eclipse stuff
22
.project
23
.pydevproject
docs/source/.templates/layout.html
@@ -0,0 +1,14 @@
1
+{% extends "!layout.html" %}
2
+
3
+{% block footer %}
4
+{{ super() }}
5
+<!-- Google tag (gtag.js) -->
6
+<script async src="https://www.googletagmanager.com/gtag/js?id=G-DYQGY4MKR3"></script>
7
+<script>
8
+ window.dataLayer = window.dataLayer || [];
9
+ function gtag(){dataLayer.push(arguments);}
10
+ gtag('js', new Date());
11
12
+ gtag('config', 'G-DYQGY4MKR3');
13
+</script>
14
+{% endblock %}
0 commit comments