WEBeditInplaceBody
The render format template WEBeditInplaceBody provides the fundamental function for highlighting content areas (see also Page Store: Content areas).
It must be used in all page templates in which content highlighting is to be used, inserted between the opening and closing HTML tag "body" with $CMS_RENDER(...)$; namely for each content area of a page template (content areas are defined in the header of a page template using CMS_BODY tags).
The mandatory name parameter must be used to give the identifier of the content area, other parameters are not required for content highlighting:
...
<body>
...
$CMS_RENDER(template:"WEBeditInplaceBody", name:"Content left")$
...
$CMS_RENDER(template:"WEBeditInplaceBody", name:"Content center")$
</body>
The template directly outputs the content of the respective content area. Therefore, no further output via $CMS_VALUE(#global.page.body("..."))$ is necessary. |
Mandatory parameters
Parameter | Explanation / Example |
---|---|
name | Specification of the identifier of the content area from the header area of the page template (CMS_BODY) in double inverted commas, e.g. |
Parallel use with Easy Edit
The optional templateId parameter can be used for Easy Edit. For notes on restrictions and other configuration options in Easy Edit see there.