Created
June 14, 2011 20:36
-
-
Save dator-zz/1025810 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assetic: | |
debug: %kernel.debug% | |
use_controller: false | |
filters: | |
cssrewrite: ~ | |
sass: ~ | |
yui_js: | |
jar: %kernel.root_dir%/java/yuicompressor.jar | |
yui_css: | |
jar: %kernel.root_dir%/java/yuicompressor.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% stylesheets '@MyBundle/Resources/public/css/main.sass' filter="sass" output='css/all.css' %} | |
<link href="{{ asset_url }}" type="text/css" rel="stylesheet" /> | |
{% endstylesheets %} | |
// Render | |
<link href="/css/all_main_1.css" type="text/css" rel="stylesheet" /> | |
// - /css/all_main_1.css is a 404 url . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$blue: #3bbfce | |
$margin: 16px | |
.content-navigation | |
border-color: $blue | |
color: darken($blue, 9%) | |
.border | |
padding: $margin / 2 | |
margin: $margin / 2 | |
border-color: $blue | |
body | |
font-size: 5em |
Event if i do a php app/console assetic:dump web the css file is 404 :s
I just tried to user assetic controller,
use_controller: %kernel.debug%
and
_assetic:
resource: .
type: assetic
in the routing_dev.yml, i get an exception :
An exception has been thrown during the rendering of a template ("Route "_assetic_e54610a_0" does not exist.") in MyBundle::layout.html.twig at line 11.
Any thought ?
Thanks a lot for your help :)
Please fork the SE and reproduce the issue there. I’ll take a look.
…On Tuesday, June 14, 2011 at 1:49 PM, dator wrote:
Event if i do a php app/console assetic:dump web the css file is 404 :s
I just tried to user assetic controller,
use_controller: %kernel.debug%
and
_assetic:
resource: .
type: assetic
in the routing_dev.yml, i get an exception :
An exception has been thrown during the rendering of a template ("Route "_assetic_e54610a_0" does not exist.") in MyBundle::layout.html.twig at line 11.
Any thought ?
Thanks a lot for your help :)
##
Reply to this email directly or view it on GitHub:
https://gist.github.com/1025810
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like you have use_controller disabled, which means Assetic is relying on you to create the assets using the assetic:dump command.