You are here

video-filter-flash.html.twig in Video Filter 8

Video Filter (Flash).

File

templates/video-filter-flash.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Video Filter (Flash).
  5. */
  6. #}
  7. <div class="video-filter">
  8. <object class="{{ video.classes|join(' ') }}" type="application/x-shockwave-flash" width="{{ video.width }}" height="{{ video.height }}" data="{{ video.flash.src }}"{% for key, value in video.flash.properties %} {{ key }}="{{ value }}"{% endfor %}>
  9. {% for key, value in video.flash.params %}
  10. <param name="{{ key }}" value="{{ value }}" />
  11. {% endfor %}
  12. </object>
  13. </div>