iframe blocktype toegevoegd [#00033]

This commit is contained in:
NH Gooi
2024-10-03 19:32:44 +02:00
parent 8616cb3d56
commit 58ea5c0c85
2 changed files with 25 additions and 3 deletions

View File

@@ -140,5 +140,22 @@
</ul>
</div>
</div>
@elseif($block->type == 'iframe')
<iframe src="{{ $block->url }}" class="article-iframe" id="{{ $id = uniqid('iframe_') }}"></iframe>
<style>
@if(isset($block->ratio))
#{{ $id }}.article-iframe {
aspect-ratio: {{ str_replace(":", "/", $block->ratio) }};
}
@endif
@if(isset($block->ratioMobile))
@media (max-width: 768px) {
#{{ $id }}.article-iframe {
aspect-ratio: {{ str_replace(":", "/", $block->ratioMobile) }};
}
}
@endif
</style>
@endif
@endforeach