{% load compress %}
{% load themes %}
{% compress css %}
{% endcompress %}
{% current_theme as current_theme %}
{% theme_dir as theme_dir %}
{% comment %}
The following 'include' is used to allow all scss files to share the same variable namespace
and also have access to ALL styles so that we can allow @extend functionality to persist.
If you wish to add new scss files, it is recommended that you add them from within the
themes/themes.scss template file.
{% endcomment %}
{% with THEME=current_theme THEME_DIR=theme_dir %}
{% compress css %}
{% endcompress %}
{% endwith %}