Files
Keith Solomon d7e721f323
Sync TODOs with Issues / sync_todos (push) Successful in 19s
feature: Initial commit
2026-05-02 10:38:21 -05:00

21 lines
478 B
PHP

<?php
/**
* Block Name: Buttons
*
* This is the template that renders the Buttons block.
*
* @package CWC
*/
namespace CWC;
$ibClasses = 'flex flex-wrap gap-4 w-full justify-center sm:justify-start';
$classes = 'align-with-content my-[1.2em]';
$wrapper = blockWrapperAttributes( $classes, $is_preview );
?>
<div id="<?php echo esc_attr( $block['id'] ); ?>" <?php echo esc_attr( $wrapper ); ?>>
<InnerBlocks className="<?php echo esc_attr( $ibClasses ); ?>" />
</div>