You are here

media-oembed-iframe.html.twig in Drupal 8

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

File

core/modules/media/templates/media-oembed-iframe.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. <css-placeholder token="{{ placeholder_token }}">
  13. </head>
  14. <body style="margin: 0">
  15. {{ media|raw }}
  16. </body>
  17. </html>

Related topics