You are here

media-oembed-iframe--remote-video.html.twig in Varbase Media 8.6

Default theme implementation to display an oEmbed resource in an iframe.

File

templates/media-oembed-iframe--remote-video.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display an oEmbed resource in an iframe.
  5. *
  6. * @ingroup themeable
  7. */
  8. #}
  9. <!DOCTYPE html>
  10. <html>
  11. <head>
  12. <style>
  13. iframe {
  14. position: absolute;
  15. left: 0;
  16. top: 0;
  17. right: 0;
  18. bottom: 0;
  19. margin: 0;
  20. width: 100%;
  21. height: 100%;
  22. }
  23. </style>
  24. <script src="{{ base_path }}{{ varbase_media_path }}/js/oembed-frame.varbase-media.{{ provider }}.js"></script>
  25. </head>
  26. <body style="margin: 0">
  27. {{ media|raw }}
  28. </body>
  29. </html>