I\'ve been googling around for an answer to this but haven\'t found exactly what I\'m looking for.
I\'m dipping my toes in the water of the Symfony framework having been
This looks like a job for Assetic and its Sass filter.
You can list all your sass files in main template directory and assetic will do the compressing for you.
Looks something like this (taken from link below):
{% stylesheets filters="compass"
"@AlomMainBundle/Resources/assets/css/main.sass"
"@AlomMainBundle/Resources/assets/css/header.sass"
"@AlomMainBundle/Resources/assets/css/footer.sass"
%}
{% endstylesheets %}
A good explanation I've found on the internet is here: http://alexandre-salome.fr/blog/Sass-Compass-Assetic-In-Ten-Minutes