@@ -403,7 +403,7 @@ lives in a specific location:
403
403
404
404
In the :ref: `overiding-bundle-templates ` section, you'll find out how each
405
405
template living inside the ``AcmeBlogBundle ``, for example, can be overridden
406
- by placing a template of the same name in the ``app/Resources/AcmeBlog /views/ ``
406
+ by placing a template of the same name in the ``app/Resources/AcmeBlogBundle /views/ ``
407
407
directory. This gives the power to override templates from any vendor bundle.
408
408
409
409
.. tip ::
@@ -952,9 +952,10 @@ We learned in the :ref:`template-naming-locations` section that the template
952
952
in question lives at ``Resources/views/Blog/index.html.twig `` inside the
953
953
``AcmeBlogBundle `` bundle. To override the bundle template, copy the ``index.html.twig ``
954
954
template to ``app/Resources/AcmeBlogBundle/views/Blog/index.html.twig `` (the
955
- ``AcmeBlogBundle `` directory might not exist). Now, when the
956
- ``AcmeBlogBundle:Blog:index.html.twig `` template is rendered, Symfony2 will look
957
- first for the template at
955
+ ``AcmeBlogBundle `` directory might not exist).
956
+
957
+ Now, when the ``AcmeBlogBundle:Blog:index.html.twig `` template is rendered,
958
+ Symfony2 will look first for the template at
958
959
``app/Resources/AcmeBlogBundle/views/Blog/index.html.twig `` before looking
959
960
at ``src/Acme/BlogBundle/Resources/views/Blog/index.html.twig ``. You're
960
961
now free to customize the template for your application.
0 commit comments