@if ($block->anchor_id )
@endif
@if($block->block_title)

@title($block->block_title)

@endif
@if($block->block_subtitle)

@title($block->block_subtitle)

@endif @if($block->cta1)
{!! generateLink($block->cta1, 'std-button std-button--large std-button--orange icon-calendar') !!}
@endif
@foreach($block->blockAgendaItems as $i => $item)
@if($item->time_label)

{{ $item->time_label }}

@endif @if($item->title)

{{ $item->title }}

@endif @if($item->content)
{!! $item->content !!}
@endif
@if($item->agendaSpeakers->count() > 0)
@if($item->speakers_label)

{{ $item->speakers_label }}

@endif @if($item->agendaSpeakers)
@foreach($item->agendaSpeakers as $i => $speakers)
@if($speakers->image)
{!! getMediaImg($speakers->image, '120x120', htmlspecialchars($speakers->title)) !!}
@endif
@if($speakers->title)

{{ $speakers->title }}

@endif @if($speakers->subtitle) {{ $speakers->subtitle }} @endif
@endforeach
@endif
@endif
@endforeach