[Solved] Symfony2 default installation keeps on adding a footer to my code


As you can already find in the other answer, the bar is called the debug bar. You will not find this in the twig templates. Instead you can remove it by disabling it in your configuration.

This setting is in app/config/config_dev.yml:

web_profiler:
    toolbar: true
    intercept_redirects: false

solved Symfony2 default installation keeps on adding a footer to my code