11 lines
299 B
PHP
11 lines
299 B
PHP
|
|
<div class="block-media">
|
||
|
|
@if(isset($media_id))
|
||
|
|
<figure>
|
||
|
|
{!! sw_media($media_id, ['w' => 800, 'alt' => $alt ?? '']) !!}
|
||
|
|
@if(isset($text) && !empty($text))
|
||
|
|
<figcaption>{{ $text }}</figcaption>
|
||
|
|
@endif
|
||
|
|
</figure>
|
||
|
|
@endif
|
||
|
|
</div>
|