templates/areas/video-element/view.html.twig line 1

Open in your IDE?
  1. {% if editmode %}
  2.     <style>
  3.         .video-element .pimcore_editable_video { height: 100%; }
  4.     </style>
  5. {% endif %}
  6. <div class="video-element fullwidth-component mb-5 mb-md-7">
  7.     {{ pimcore_video('video-element', {
  8.         attributes: {
  9.             loop: true,
  10.             muted: true,
  11.             autoplay: true,
  12.             playsinline: true
  13.         },
  14.         removeAttributes: ['width', 'height', 'poster']
  15.     }) }}
  16. </div>