{#
The following line is needed for unit testing as the DOMDocument
used by the SF's crawler doesn't recognize the HTML5 charset meta tag.
https://github.com/symfony/symfony/issues/3881
#}
{# This is required to make css responsive work properly #}
{% if config.getParameter('name') is not empty %}
{{ config.getParameter('name') }}
{% else %}
Claroline Connect
{% endif %}
{% if config.getParameter('google_meta_tag') is not empty %}
{{ config.getParameter('google_meta_tag') | raw }}
{% endif %}
{# Adds stylesheets #}
{# Styles from current theme #}
{# Styles from loaded plugins #}
{{ injectedStylesheets | raw }}
{# Styles from plateform configuration #}
{% for file in stylesheets %}
{% endfor %}
{# Adds javascripts #}
{# Base libraries #}
{# TinyMCE #}
{# Frequently used Claroline JS #}
{# Claroline Plugins configuration #}
{# Anchor for react app to mount in #}
{# Router #}
{# Main Claroline UI app #}
{# JS from loaded plugins #}
{{ injectedJavascripts | raw }}
{# JS from plateform configuration #}
{% for file in javascripts %}
{% endfor %}