1
1
The Big Picture
2
2
===============
3
3
4
- This chapter will teach you how to develop a simple Symfony2 project in 10
4
+ This first part will teach you how to develop a simple Symfony2 project in 10
5
5
minutes! If you've used a web framework before, you should feel right at home
6
6
with Symfony2. If not, welcome to a whole new way of developing web applications.
7
7
@@ -282,8 +282,9 @@ template (or ``AcmeDemoBundle:Demo:hello.html.twig`` if you use the logical name
282
282
{% endblock %}
283
283
284
284
By default, Symfony2 uses `Twig <http://twig.sensiolabs.org/> ` as its template
285
- engine but you can also use traditional PHP templates if you choose. The next
286
- chapter will introduce how templates work in Symfony2.
285
+ engine but you can also use traditional PHP templates if you choose. The
286
+ :doc: `second part of this tutorial</quick_tour/the_view> ` will introduce how
287
+ templates work in Symfony2.
287
288
288
289
Bundles
289
290
~~~~~~~
@@ -294,7 +295,7 @@ bundles. In Symfony2 speak, a bundle is a structured set of files (PHP files,
294
295
stylesheets, JavaScripts, images, ...) that implements a single feature (a
295
296
blog, a forum, ...) and which can be easily shared with other developers. As
296
297
of now, you have manipulated one bundle, ``AcmeDemoBundle ``. You will learn
297
- more about bundles in the :doc: `last chapter of this tutorial</quick_tour/the_architecture> `.
298
+ more about bundles in the :doc: `last part of this tutorial</quick_tour/the_architecture> `.
298
299
299
300
.. _quick-tour-big-picture-environments :
300
301
0 commit comments