You are here

media-soundcloud-embed.html.twig in Media entity Soundcloud 8.2

Default theme implementation to embed a soundcloud url.

Available variables:

  • width: The width of the iframe.
  • height: The height of the iframe.
  • type: The type of embed: visual or classic.

File

templates/media-soundcloud-embed.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to embed a soundcloud url.
  5. *
  6. * Available variables:
  7. * - width: The width of the iframe.
  8. * - height: The height of the iframe.
  9. * - type: The type of embed: visual or classic.
  10. *
  11. * @see template_preprocess_media_soundcloud_embed()
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. <iframe width="{{ width }}" height="{{ height }}" scrolling="no" frameborder="no" src="{{ url }}"></iframe>