47 lines
No EOL
1.5 KiB
HTML
47 lines
No EOL
1.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block analytics %}
|
|
<!-- Google Tag Manager -->
|
|
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
|
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
|
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
|
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
|
|
})(window,document,'script','dataLayer','GTM-NMWC63S');</script>
|
|
<!-- End Google Tag Manager -->
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
|
|
{% import "partials/language.html" as lang with context %}
|
|
|
|
<!-- Application footer -->
|
|
<footer class="md-footer">
|
|
|
|
<!-- Further information -->
|
|
<div class="md-footer-meta md-typeset">
|
|
<div class="md-footer-meta__inner md-grid">
|
|
|
|
<!-- Copyright and theme information -->
|
|
<div class="md-footer-copyright">
|
|
{% if config.copyright %}
|
|
<div class="md-footer-copyright__highlight">
|
|
{{ config.copyright }}
|
|
</div>
|
|
{% endif %}
|
|
powered by
|
|
<a href="https://www.mkdocs.org" title="MkDocs">MkDocs</a>
|
|
and
|
|
<a href="https://squidfunk.github.io/mkdocs-material/"
|
|
title="Material for MkDocs">
|
|
Material for MkDocs</a>
|
|
</div>
|
|
|
|
<!-- Social links -->
|
|
{% block social %}
|
|
{% include "partials/social.html" %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
{% endblock %} |