layout.html 532 B

123456789101112131415161718
  1. {# Import the theme's layout. #}
  2. {% extends "!layout.html" %}
  3. {# Custom CSS overrides #}
  4. {% set css_files = css_files + ['_static/style.css', "../../css/converse.min.css"] %}
  5. {% set script_files = script_files + ["../../dist/converse.min.js", "../../analytics.js"] %}
  6. {# Add some extra stuff before and use existing with 'super()' call. #}
  7. {% block footer %}
  8. {{ super() }}
  9. <script>
  10. converse.initialize({
  11. bosh_service_url: 'https://conversejs.org/http-bind/',
  12. });
  13. </script>
  14. {% endblock %}