diff --git a/content/developer/howtos/website_themes/layout.rst b/content/developer/howtos/website_themes/layout.rst
index e84f732bca..cc64960119 100644
--- a/content/developer/howtos/website_themes/layout.rst
+++ b/content/developer/howtos/website_themes/layout.rst
@@ -207,7 +207,7 @@ below:
.. code-block:: xml
-
+
This XPath moves the element with `.o_footer_scrolltop_wrapper` class before the element with the
@@ -255,6 +255,42 @@ QWeb
QWeb is the primary templating engine used by Odoo. It is an XML templating engine mainly used to
generate HTML fragments and pages.
+`t-call` directives can receive parameters:
+
+.. code-block:: xml
+
+
+
+
+
+
+
+
+ My page title
+
+
+
+
+
+
+
+.. list-table::
+ :header-rows: 1
+ :stub-columns: 1
+ :widths: 20 80
+
+ * - Attribute (examples)
+ - Description
+ * - `_icon="true"`
+ - Pass the raw value (here a boolean set to `true`)
+ * - `_item_class.f="dropdown"`
+ - Pass value as a string
+ * - `additional_title.translate="My page title"`
+ - Pass value as a string
+
.. seealso::
:doc:`QWeb templates documentation <../../reference/frontend/qweb>`.
@@ -281,7 +317,7 @@ First, create a record to declare the field. This field has to be linked to an e
html
manual
0
-
+
.. note:: Fields creation is also possible (and recommended) through `a model using Python `_.
@@ -300,10 +336,10 @@ interface and fill it afterwards.
view_blog_post_form_category
blog.post
-
+
-
+
@@ -318,7 +354,7 @@ The field value can be shown somewhere in a page by calling `model_name.field_na
.. code-block:: xml
:caption: ``/website_airproof/views/website_blog_templates.xml``
-
+
.. _website_themes/layout/background :
@@ -393,7 +429,7 @@ Enable one of the header default templates.
:caption: ``/website_aiproof/data/presets.xml``
Explicitly set the desired template in the `primary_variables.scss` file.
@@ -403,15 +439,15 @@ Explicitly set the desired template in the `primary_variables.scss` file.
$o-website-values-palettes: (
(
- 'header-template': 'Contact',
+ 'header-template': 'stretch',
),
);
.. code-block:: xml
:caption: ``/website_airproof/data/presets.xml``
-