This is more a technical question than a real problem so I don't know if it will be removed but I will ask it anyway.
So I am developing some platform using Symfony2, AngularJS, RequireJS and other tons of stuff I need, everything works with harmony and peace, but I want to create some panels in pure HTML (no twig files) so AngularJS can load it using ngRoute, but thoose files need to reside in /web/partials (for example) to be loaded correctly, because assetic wont generate thoose files inside /bundles/foo/barbundle/partials/*.html as they are not JS, CSS or Images...
The question is simple, is there any way to either force AngularJS to load TWIG templates as partials or forcing Symfony2 assetic to dump my partials inside web folder?
I know that putting manually inside /web is enough to load everything I need and it is loading perfectly in production, but I want to keep some folder structure and keep all my frontend stuff in the same folder /src/Foo/BarBundle/Resources/public/*
UPDATE
I just saw that assets are installing my html files inside my bundle public folder, I don't know why it didn't work before but creating them inside src/Foo/BarBundle/Resources/public/partials and then app/console assets:install --symlinks links them to /web/bundles/foobar/partials, as I say, it didn't work before...
But the question about loading twig files with AngularJS still there.