Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I normally place my JS and CSS Assetic assets inside a DefaultBundle, but I suppose the best place to put them would be in the app/Resources/public/(js|css) folders.

Also, to reference assets we use:

{% javascripts filter="" output="js/core.js" debug=true
    "@DefaultBundle/Resources/public/js/jquery-1.6.2.js" %}
    <script src="{{ asset_url }}" type="text/javascript"></script>
{% endjavascripts %}

How do I go about referencing shared assets like jQuery and my CSS reset stylesheets in app/Resources/public/...?

share|improve this question

3 Answers

up vote 12 down vote accepted

Yes it's a good choice to not put libraries inside a Bundle

see here : http://symfony.com/doc/current/cookbook/bundles/best_practices.html#vendors

A bundle should not embed third-party libraries written in JavaScript, CSS, or any other language.


What i suggest you, is to put you jquery and reset files under something like: web/css/reset.css and web/js/jquery.min.js and to change your code with something like:

{% javascripts filter="" output="js/core.js" debug=true
    "/js/jquery-1.6.2.js" %}
    <script src="{{ asset_url }}" type="text/javascript"></script>
{% endjavascripts %}

I hope this will work for you.

share|improve this answer
I would prefer having the scripts in a non-public folder, but this is helpful, thanks for answering. – josef.van.niekerk Aug 4 '11 at 12:18

You could also use this:

{% stylesheets '../app/Resources/public/css/*' %}
    <link href="{{ asset_url }}" type="text/css" rel="stylesheet" />
{% endstylesheets %}
share|improve this answer
This is much better than keeping things in a public folder and is what I've been scratching my head about all night! Thanks! – musoNic80 Jul 11 '12 at 20:46
1  
Is there a way I this could be extended to images in app/Resources/public/images? – rjmunro Oct 24 '12 at 15:38

You can replace ../app/Resources/public/css/ by public/css/. The same for Javascript folder.

{% stylesheets filter='less' output='css/core' 'public/css/*' %}

      <link href="{{ asset_url }}" type="text/css" rel="stylesheet" />

{% endstylesheets %}

{% javascripts "public/js/*" %}

      <script src="{{ asset_url }}" type="text/javascript"></script>

{% endjavascripts %}

Here all the files of /web/public folder are automatically loaded.

share|improve this answer

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.