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 #}
|
2014-12-07 00:53:41 +01:00
|
|
|
{% set bootswatch_css_custom = ['_static/style.css', "../../css/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>
|
2017-04-04 20:43:52 +02:00
|
|
|
converse.initialize({
|
|
|
|
bosh_service_url: 'https://conversejs.org/http-bind/',
|
2014-12-07 00:53:41 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|