docs/source/_templates/layout.html

20 lines
448 B
HTML
Raw Permalink Normal View History

2015-02-07 01:39:41 +05:30
{# layout.html #}
{# Import the theme's layout. #}
{% extends "!layout.html" %}
2019-05-29 20:07:24 +05:30
{% set css_files = css_files + ['_static/style.css'] %}
{% block footer %}
{{ super() }}
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-45299905-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-45299905-2');
</script>
{% endblock %}