@@ -79,7 +79,7 @@ For instance, a very simple template looks like:
7979
8080 .. code-block :: html+jinja
8181
82- {# src/Acme/BlogBundle /Resources/views/Post/index.html.twig #}
82+ {# src/AppBundle /Resources/views/Post/index.html.twig #}
8383 {% extends '::layout.html.twig' %}
8484
8585 {% block title -%}
@@ -94,7 +94,7 @@ For instance, a very simple template looks like:
9494
9595 .. code-block :: html+php
9696
97- <!-- src/Acme/BlogBundle /Resources/views/Post/index.html.php -->
97+ <!-- src/AppBundle /Resources/views/Post/index.html.php -->
9898 <?php $view->extend('::layout.html.twig') ?>
9999
100100 <?php $view['slots']->set('title', $cmfMainContent->getTitle()) ?>
@@ -120,7 +120,7 @@ To configure a default template, use the ``default_template`` option:
120120
121121 # ...
122122 cmf_content :
123- default_template : AcmeBlogBundle :Content:static.html.twig
123+ default_template : AppBundle :Content:static.html.twig
124124
125125 .. code-block :: xml
126126
@@ -131,7 +131,7 @@ To configure a default template, use the ``default_template`` option:
131131 <!-- ... -->
132132
133133 <config xmlns =" http://cmf.symfony.com/schema/dic/content"
134- default-template =" AcmeMainBundle :Content:static.html.twig"
134+ default-template =" AppBundle :Content:static.html.twig"
135135 />
136136 </container >
137137
@@ -141,7 +141,7 @@ To configure a default template, use the ``default_template`` option:
141141
142142 // ...
143143 $container->loadFromExtension('cmf_content', array(
144- 'default_template' => 'AcmeMainBundle :Content:static.html.twig',
144+ 'default_template' => 'AppBundle :Content:static.html.twig',
145145 ));
146146
147147 Whenever the content controller gets called without a specified template, it
0 commit comments