{% comment %}
Base template pages.
{% endcomment %}
{% load dashboard_extras %}
{% load get_files from webpack_loader %}
{% load render_bundle from webpack_loader %}
{% block title %}| {% settings_value 'FULL_APPLICATION_NAME' %}{% endblock title %}
{% comment %}
The stylesheets can be either overriden or augmented here. Make sure to use the block.super if you're
adding additional stylesheets in your page when extending the base.
{% endcomment %}
{% get_files 'application-main' 'css' as common_css %}
{% for css_file in common_css %}
{% endfor %}
{% block stylesheets %}
{% endblock %}
{% block body %}{% endblock %}
{% block javascript %}
{# webpack loading #}
{% render_bundle 'manifest' %}
{% render_bundle 'globalization' %}
{% render_bundle 'application-main' %}
{% endblock javascript %}