Description
Renders the content blocks on the page
Example
Type
Widget
Name | Type | Description | Example |
---|---|---|---|
name | Block NameString | Renders a specific block with the matching name | “block-name” |
include | StringBlock Name | Render the set of blocks with matching names | “block-name-3, block-name-4” |
exclude | StringBlock Name | Renders all content blocks excluding the blocks with matching names | “block-name-1, block-name-2” |
all | StringBoolean | Indicates whether to render all the created content blocks. | “true” |
Usage
<gevme-content-block />
renders the content blocks on the page.
Example
<gevme-content-block all="true" />
<gevme-content-block name="block-name" />
<gevme-content-block include="block-name-1, block-name-2" />
<gevme-content-block exclude="block-name-1, block-name-2" />