gutenberg_ai_tools-1.0.x-dev/templates/gutenberg-block--gutenberg-ai-tools--ai-block.html.twig
templates/gutenberg-block--gutenberg-ai-tools--ai-block.html.twig
{#
/**
* @file
* Default theme implementation for rendering the AI Block server-side.
*
* Available variables:
* - block_name: The Gutenberg block name.
* - block_content: The content of this block (generated by save function).
* - block_attributes: The attributes of this block.
* - attributes: array of HTML attributes populated by modules, intended to
* be added to the main container tag of this template.
*
* @see template_preprocess_gutenberg_block()
* @see template_preprocess_gutenberg_block__gutenberg_ai_tools__ai_block()
*
* @ingroup themeable
*/
#}
<div{{ attributes }}>
<div class="ai-block-content">
{{ block_content }}
</div>
</div>