In content or content objects, it's possible to create properties that can be displayed within the content or used to enforce specific behaviors using Smarty.
Property
{{property name='<property_name>'}}
{{$property['<property_name>']}}
Examples
Via the interface, the following notation is added:
Schrijfwijze interface
{{* This renders the content of the property "header" and displays it in the content *}}
{{property name='header'}}
{{* This renders the content of the "header" property and places it in the variable $header *}}
{{property name='header' assign='header'}}
It's also possible to directly call a property;
Direct aanroepen property
{{* This renders the content of the "header" property and displays it in the content.*}}
{{$property['header']}}
{{* By using `$property`, you don't need to first set a variable with the value of this property. Instead, you can use it directly *}}
{{if !empty($property['header'])}}