2014-12-06 18:57:15 +01:00
|
|
|
{# Import the theme's layout. #}
|
|
|
|
{% extends "!layout.html" %}
|
2013-04-26 21:49:26 +02:00
|
|
|
|
2014-12-06 18:57:15 +01:00
|
|
|
{# Custom CSS overrides #}
|
2022-02-20 18:44:30 +01:00
|
|
|
{% set css_files = css_files + ['_static/style.css'] %}
|
|
|
|
{% set script_files = script_files + ["../../analytics.js"] %}
|
2014-12-07 00:53:41 +01:00
|
|
|
|
|
|
|
{# Add some extra stuff before and use existing with 'super()' call. #}
|
|
|
|
{% block footer %}
|
|
|
|
{{ super() }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|