21 lines
524 B
HTML
21 lines
524 B
HTML
{% extends "!layout.html" %}
|
|
|
|
{% block extrahead %}
|
|
{{ super() }}
|
|
<!-- Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ googleanalytics_id }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', '{{ googleanalytics_id }}');
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block footer %} {{ super() }}
|
|
|
|
<style>
|
|
.wy-nav-content { max-width: none; }
|
|
</style>
|
|
|
|
{% endblock %} |