0
|
1 {# Import the theme's layout. #}
|
|
2 {% extends "!layout.html" %}
|
|
3
|
|
4 {# Custom CSS overrides #}
|
|
5 {% set bootswatch_css_custom = ['_static/orthanc.css'] %}
|
|
6
|
|
7 {% block footer %}
|
|
8 {{ super() }}
|
|
9 <!-- Google Analytics -->
|
|
10 <script>
|
|
11 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
12 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
13 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
14 })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
15 ga('create', 'UA-33455438-2', 'orthanc-server.com');
|
|
16 ga('send', 'pageview');
|
|
17 </script>
|
|
18 {% endblock %}
|