{% placeholder %}
The {% placeholder %}
tag will render a placeholder section which is generally used inside Layouts. This tag will return any placeholder contents that have been added using the {% put %}
tag, or any default content that is defined (optional).
Content can then be injected into the placeholder in any subsequent page or partial.
Default placeholder content
Placeholders can have default content that can be either replaced or complemented by a page. If the {% put %}
tag for a placeholder with default content is not defined on a page, the default placeholder content is displayed. Example placeholder definition in the layout template:
The page can inject more content to the placeholder. The {% default %}
tag specifies a place where the default placeholder content should be displayed. If the tag is not used the placeholder content is completely replaced.
Checking a placeholder exists
In a layout template you can check if a placeholder content exists by using the placeholder()
function. This lets you to generate different markup depending on whether the page provides a placeholder content. Example:
Custom attributes
The placeholder
tag accepts two optional attributes — title
and type
. The title
attribute is not used by the CMS itself, but could be used by other plugins. The type attribute manages the placeholder type. There are two types supported at the moment — text and html. The content of text placeholders is escaped before it's displayed. The title and type attributes should be defined after the placeholder name and the default
attribute, if it's presented. Example:
Example of a placeholder with a default content, title and type attributes.