```
# stylesheets
route '/css/style/' do
'/css/style.css'
end
compile '/css/style/' do
filter :less
filter :rainpress
end
route '/css/*' do
nil
end
compile '/css/*' do
nil
end
```
I put all my stylesheets in content/css/
Note that I'm excluding all files in content/css/ other than
`style.less` (nil route, nil compile). This is because my stylesheet
has imports and magick, and I don't need to compile all the partials
as well. You'll prob'ly use something like this if you're using
partials. The catchall `*` rule needs to come after the more specific
inclusions, otherwise the exclusion rule will win.
-- justin
> --
> You received this message because you are subscribed to the nanoc discusssion group.
>
> To post to this group, send email to na...@googlegroups.com
> To unsubscribe from this group, send email to
> nanoc+un...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/nanoc?hl=en