Initial commit to github

This commit is contained in:
Keith Solomon
2025-08-22 15:40:01 -05:00
commit e8efdbeb34
230 changed files with 32213 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
* Block Name: Boilerplate
*
* This is the template for building your own custom blocks.
*
* @package BasicWP
*/
namespace BasicWP;
$classes = 'boilerplate';
if ( ! $is_preview ) {
$wrapper = get_block_wrapper_attributes(
array(
'class' => $classes,
)
);
} else {
$wrapper = 'class="' . $classes . '"';
}
?>
<section <?php echo esc_attr( $wrapper ); ?>>
<!-- Your block code will go here -->
</section>