| 1 |
<?php |
| 2 |
/** |
| 3 |
* Collapsibles block template |
| 4 |
* |
| 5 |
* @var $attributes - block attributes |
| 6 |
* @var $content - inner blocks |
| 7 |
* @var $options - layout options |
| 8 |
* |
| 9 |
* @package Canvas |
| 10 |
*/ |
| 11 |
|
| 12 |
$attributes['className'] .= ' cnvs-block-collapsibles-' . $attributes['count']; |
| 13 |
|
| 14 |
?> |
| 15 |
|
| 16 |
<div class="<?php echo esc_attr( $attributes['className'] ); ?>" <?php echo ( isset( $attributes['anchor'] ) ? ' id="' . esc_attr( $attributes['anchor'] ) . '"' : '' ); ?>> |
| 17 |
<?php echo (string) $content; // XSS. ?> |
| 18 |
</div> |
| 19 |
|