@@ -79,7 +79,7 @@ For instance, a very simple template looks like:
79
79
80
80
.. code-block :: html+jinja
81
81
82
- {# src/Acme/BlogBundle /Resources/views/Post/index.html.twig #}
82
+ {# src/AppBundle /Resources/views/Post/index.html.twig #}
83
83
{% extends '::layout.html.twig' %}
84
84
85
85
{% block title -%}
@@ -94,7 +94,7 @@ For instance, a very simple template looks like:
94
94
95
95
.. code-block :: html+php
96
96
97
- <!-- src/Acme/BlogBundle /Resources/views/Post/index.html.php -->
97
+ <!-- src/AppBundle /Resources/views/Post/index.html.php -->
98
98
<?php $view->extend('::layout.html.twig') ?>
99
99
100
100
<?php $view['slots']->set('title', $cmfMainContent->getTitle()) ?>
@@ -120,7 +120,7 @@ To configure a default template, use the ``default_template`` option:
120
120
121
121
# ...
122
122
cmf_content :
123
- default_template : AcmeBlogBundle :Content:static.html.twig
123
+ default_template : AppBundle :Content:static.html.twig
124
124
125
125
.. code-block :: xml
126
126
@@ -131,7 +131,7 @@ To configure a default template, use the ``default_template`` option:
131
131
<!-- ... -->
132
132
133
133
<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"
135
135
/>
136
136
</container >
137
137
@@ -141,7 +141,7 @@ To configure a default template, use the ``default_template`` option:
141
141
142
142
// ...
143
143
$container->loadFromExtension('cmf_content', array(
144
- 'default_template' => 'AcmeMainBundle :Content:static.html.twig',
144
+ 'default_template' => 'AppBundle :Content:static.html.twig',
145
145
));
146
146
147
147
Whenever the content controller gets called without a specified template, it
0 commit comments