We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c981300 commit d951418Copy full SHA for d951418
doc/_templates/base.html
@@ -0,0 +1,15 @@
1
+{% extends "furo/base.html" %}
2
+
3
+{% block scripts %}
4
+ {{ super() }}
5
+ {% if include_analytics %}
6
+ <!-- Google Analytics 4 -->
7
+ <script async src="https://www.googletagmanager.com/gtag/js?id=G-MC3XWQDL4K"></script>
8
+ <script>
9
+ window.dataLayer = window.dataLayer || [];
10
+ function gtag(){dataLayer.push(arguments);}
11
+ gtag('js', new Date());
12
+ gtag('config', 'G-MC3XWQDL4K');
13
+ </script>
14
+ {% endif %}
15
+{% endblock %}
doc/_templates/layout.html
0 commit comments