{#- Base template for indico pages (standard "indico look") -#}
{%- if page_title %}{{ page_title }} ยท {% endif %}
{{- site_name -}}
{% if 'Indico' not in site_name %} (Indico){% endif -%}
{% include 'meta.html' %}
{% if social.facebook_app_id -%}
{% endif %}
{% block extra_meta_tags %}
{% endblock %}
{% for bundle in bundles -%}
{{ bundle }}
{% endfor %}
{% for bundle in print_bundles -%}
{% for path in bundle._paths -%}
{% endfor %}
{% endfor %}
{% for url in js_files -%}
{% endfor %}
{% block late_js %}
{% endblock %}
{{ head_content|default('')|safe }}
{% for url in css_files -%}
{% endfor %}
{{ template_hook('html-head') }}
{% block html_body %}
{#-
XXX: Using a block and inheritance would be nicer but for now this
is only called from a WP so just passing the contents is much easier
#}
{{ body|safe }}
{% endblock %}
{%- set req_stats = get_request_stats() %}