<div class="article__video" itemprop="video" itemscope itemtype="http://schema.org/VideoObject">
<meta itemprop="thumbnailUrl" content="{{ video_thumbnail_url(element.src) }}" />
<meta itemprop="contentURL" content="{{ element.src|default }}" />
<meta itemprop="embedURL" content="{{ element.src|default }}" />
<meta itemprop="uploadDate" content="{{ element.createdAt|date('c') }}" />
<div class="article__video__inner">
<div class="article__video-iframe">
<iframe cl width="{{ element.width|default }}" height="{{ element.height|default }}" src="{{ element.src|default }}" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
{% if element.caption != '' %}
<div class="article__video-caption" itemprop="description">
<span itemprop="name">{{ element.caption|raw }}</span>
</div>
{% endif %}
</div>