I have different Bundles: MainBundle (Homepage), SecurityBundle (Login, Registration), MessageBundle (Message System), ShopBundle.
I also follow the three stage layout schema (::base.html.twig, AcmeMainBundle::layout.html.twig, AcmeMainBundle:Default:index.html.twig).
But I have problems sharing common js libaries through the application (e.g. jquery) and defining a base.css (which sets some base classes, backgrounds, fonts etc.)
So whats the best approach to use shared css and js withouth having to lose assetic support?
One idea would be to create a CommonBundle which holds all global js and css and some layout files but I don't think this is the best way to handle this...