@php($cols = $block->get('cols', []))

{{ $block->get('eyebrow') }}

{!! $block->get('title_html') !!}

{{ $block->get('intro') }}

@foreach ($cols as $col)

{{ $col['eyebrow'] ?? '' }}

{!! $col['title_html'] ?? '' !!}

    @foreach (($col['items'] ?? []) as $item)
  • {{ $item }}
  • @endforeach
@endforeach