templates/areas/row/editables.html.twig line 1

Open in your IDE?
  1. {% block editables %}
  2.   {% set rowImage = pimcore_image('rowImage', {
  3.     reload: true,
  4.     thumbnail: 'content-full'
  5.   }) %}
  6.   {% set rowVideo = pimcore_video('rowVideo', {
  7.     reload: true,
  8.     width: '100%',
  9.     height: '100%',
  10.     attributes: {
  11.       controls: false,
  12.       loop: 1,
  13.       autoplay: true,
  14.       playsinline: true,
  15.       muted: true
  16.     },
  17.     youtube: {
  18.       rel: 0,
  19.       controls: false,
  20.       loop: 1,
  21.       autoplay: true,
  22.       muted: true
  23.     }
  24.   }) %}
  25.   {% block view %}
  26.   {% endblock %}
  27. {% endblock %}