{#
/**
* @var \Pimcore\Templating\PhpEngine $this
* @var \Pimcore\Templating\PhpEngine $view
* @var \Pimcore\Templating\GlobalVariables $app
* #
* @var $videos
*/
#}
<section class="content-block demi-infrastructure-detail-content-block demi-infrastructure-detail-content-block--video">
<div class="container">
{% if videos is not empty and videos | length > 0 %}
{% for item in videos %}
{% set video = demi_pregmatch('/(?:(?:http(?:s?):\/\/)|(?:www\.)|(?:http(?:s?):\/\/www\.))(?:youtu\.?be(?:\.com)?\/(?!oembed))(?:(?:watch\?v(?:=|%3D))|(?:v\/))?([a-z0-9_-]+)/im', item.getUrl()) %}
{% if video is iterable %}
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item"
src="https://www.youtube.com/embed/{{ video[1] }}?rel=0&showinfo=0" frameborder="0"
allowfullscreen></iframe>
</div>
{% endif %}
{% endfor %}
{% endif %}
</div>
</section>