The following tags can be used in custom Brics to add additional characteristics and functionality.
Container
The container tag lets you add a section within your custom Bric that other Brics can be placed within.
Example:
<bric_container></bric_container>
PHP Snippet
The PHP snippet tag is intended to be used as a wrapper for PHP code that is included within the HTML of a custom Bric. This tag helps to prevent mutations in the PHP code that occur when the PHP is rendered as HTML within the Blocs design environment. Upon preview and export this tag is replaced in the following way:
<bric-php-snippet> becomes <?php.
</bric-php-snippet> becomes ?>.
Example:
<bric-php-snippet> Your PHP Code Goes Here </bric-php-snippet>