22 lines
676 B
PHP
22 lines
676 B
PHP
<?php
|
|
// $attributes = get_block_attributes();
|
|
// echo '<pre>';
|
|
// print_r($block);
|
|
// echo '</pre>';
|
|
|
|
$inner_blocks_html = '';
|
|
foreach ($block->inner_blocks as $inner_block) {
|
|
$inner_blocks_html .= $inner_block->render();
|
|
}
|
|
?>
|
|
<section class="wp-block-homegrade-content-blocks-points-cles">
|
|
<div class="wp-block-homegrade-content-blocks-points-cles__titling">
|
|
<div class="icon">
|
|
<img src="<?php echo plugin_dir_url(dirname(__DIR__)) ?>points-cles/src/img/icon_feather_key.png" alt="" />
|
|
</div>
|
|
<h3 class=""><?php echo __("Les points clés", "homegrade-blocks__texte-fonctionnel") ?></h3>
|
|
</div>
|
|
<?php echo $inner_blocks_html ?>
|
|
|
|
|
|
</section>
|