You are here

function bootstrap_layout_builder_theme in Bootstrap Layout Builder 2.x

Same name and namespace in other branches
  1. 1.x bootstrap_layout_builder.module \bootstrap_layout_builder_theme()

Implements hook_theme().

File

./bootstrap_layout_builder.module, line 32
Bootstrap Layout Builder module.

Code

function bootstrap_layout_builder_theme() {
  return [
    'blb_container_wrapper' => [
      'variables' => [
        'attributes' => [],
        'children' => [],
      ],
    ],
    'blb_container' => [
      'variables' => [
        'attributes' => [],
        'children' => [],
      ],
    ],
    'blb_section' => [
      'template' => 'blb-section',
      'render element' => 'content',
      'base hook' => 'layout',
    ],
  ];
}