Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm including CSS stylesheets in my template like so:

{% stylesheets
    "@SomeBundle/Resources/assets/css/default.css.twig"
    "@SomeBundle/Resources/assets/css/global.css.twig"
%}
    <link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}

However I want to run these CSS files through Twig, is this in any way possible while using the {% stylesheets %} tag or does this require some other approach. I've already tried enabling a twig filter but that does not exist.

share|improve this question
1  
The stylesheets tag is no related to Twig. This tag is contributed by AsseticBundle. Could you clarify your question, I have hard time understanting what you try to achieve :) – Matt Jun 14 '12 at 13:41
@Matt Well I want to keep the benefits that Assetic gives me, while running the stylesheet through Twig first. – Xeross Jun 18 '12 at 6:38

2 Answers

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:

<style type="text/css">
    /* */
</style>
share|improve this answer
Yes this did come to mind, however you lose the benefit of having your styles in a separately cached file. – Xeross Jun 18 '12 at 6:39

Did you take a look at this: official documentation for including stylesheets in Twig

Is that what you're looking for?

share|improve this answer
Thanks for your reply, but no, what I'm looking for is parsing the templates with Twig. Perhaps there should be a Twig filter for Assetic to do this, yet I haven't encountered one. – Xeross Jun 19 '12 at 13:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.