I followed this tutorial to add sass support in symfony:
https://alexandre.salome.fr/blog/sass-compass-assetic-in-ten-minutes
So far, I have a stylesheets.html.twig with this content:
{% stylesheets filter="sass"
"css/main.scss"
"css/details.scss"
"css/talk.scss"
%}
<link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}
that works fine, but how do I add more stylesheets when a specific *.html.twig is used? I guess I cant use blocks when using the filter function like this above.