diff --git a/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/templatesections/templatesections.html b/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/templatesections/templatesections.html index 1fdfdfb14579..5e656bc26098 100644 --- a/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/templatesections/templatesections.html +++ b/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/templatesections/templatesections.html @@ -20,33 +20,35 @@
- -
- + +
Render child template
+
- + Renders the contents of a child template, by inserting a @RenderBody() placeholder.
- +
- +
-
+
Render a named section
- + Renders a named area of a child template, by inserting a @RenderSection(name) placeholder. + This renders an area of a child template which is wrapped in a corresponding @section [name]{ ... } definition. +
- +
- + - + Required
- +
- + If mandatory, the child template must contain a @section definition, otherwise an error is shown.
- +
- +
- +
-
+
Define a named section
- + Defines a part of your template as a named section by wrapping it in @section { ... }. + This can be rendered in a specific area of the parent of this template, by using @RenderSection. +
- +
- + - + Required
- +