diff --git a/developer_manual/tutorial.rst b/developer_manual/tutorial.rst
index 1e9d95d96..267bb9073 100644
--- a/developer_manual/tutorial.rst
+++ b/developer_manual/tutorial.rst
@@ -736,7 +736,7 @@ For more information about MDB2 style prepared statements, please see the `offic
Templates
---------
-ownCloud uses its own templating system. Templates reside in the **template/** folder. In every template file you can easily access the template functions listed in :doc:`templates`
+ownCloud provides its own templating system. The appframework also provides the option of using `Twig Templates `_ which can optionally be enabled. Templates reside in the **templates/** folder.
Templates are abstracted by the TemplateResponse object and used and returned inside the controller method. Variables can be assigned to the Template by using the **setParams()** method:
@@ -760,8 +760,40 @@ Templates are abstracted by the TemplateResponse object and used and returned in
return $response;
}
+Twig Templates (recommended)
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ownCloud templates do a bad job at preventing `XSS `_. Therefore the apptemplate comes with a second option: the `Twig Templating Language `_.
-To access the assigned variables in the template, use the **$_[]** array. The variable will be availabe under the key that you defined (e.g. $_['key']).
+Twig Templates are enabled by using the Twig Middleware. If a Twig template directory is set in the :file:`dependencyinjection/dicontainer.php`, the middleware gets loaded automatically. If no directory is set, theres no additional overhead.
+
+To enable them in the :file:`dependencyinjection/dicontainer.php`, add the following line to the constructor:
+
+.. code-block:: php
+
+ `_.
+
+ownCloud Templates
+~~~~~~~~~~~~~~~~~~
+In every template file you can easily access the template functions listed in :doc:`templates`. To access the assigned variables in the template, use the **$_[]** array. The variable will be availabe under the key that you defined (e.g. $_['key']).
:file:`templates/main.php`