THIS link suggests that /app
directory contains all configuration, templates (.html.twig
files) and translations, and the /src
directory contains PHP code.
However, HERE we can see that .css and .js files are loaded from /src/AppBundle/Resources/public
directory and not /app/Resources/public
directory. What is the best practice? How should I professionaly approach this problem, and where should I keep all the templates, .js
and .css
files?