I\'m including CSS stylesheets in my template like so:
{% stylesheets \"@SomeBundle/Resources/assets/css/default.css.twig\" \"@SomeBundle/Resources/asset
You could do it if you load the css as an internal stylesheet. Something like this:
{% block stylesheets %} {{ parent() }} {% include 'AcmeBundle:Bundle:mycss.css.twig' %} {% endblock %}
And then the mycss.css.twig template would contain: