layout.html 336 B

12345678910111213
  1. {# Import the theme's layout. #}
  2. {% extends "!layout.html" %}
  3. {# Custom CSS overrides #}
  4. {% set css_files = css_files + ['_static/style.css'] %}
  5. {% set script_files = script_files + ["../../analytics.js"] %}
  6. {# Add some extra stuff before and use existing with 'super()' call. #}
  7. {% block footer %}
  8. {{ super() }}
  9. {% endblock %}