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 #}
|
2019-05-22 14:03:13 +02:00
|
|
|
{% set css_files = css_files + ['_static/style.css', "../../dist/converse.min.css"] %}
|
2017-02-16 20:52:20 +01:00
|
|
|
{% set script_files = script_files + ["../../dist/converse.min.js", "../../analytics.js"] %}
|
2014-12-07 00:53:41 +01:00
|
|
|
|
|
|
|
{# Add some extra stuff before and use existing with 'super()' call. #}
|
|
|
|
{% block footer %}
|
|
|
|
{{ super() }}
|
|
|
|
<script>
|
2019-01-01 11:16:14 +01:00
|
|
|
converse.initialize({'bosh_service_url': 'https://conversejs.org/http-bind/'});
|
2014-12-07 00:53:41 +01:00
|
|
|
</script>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|