You are here

bbb-meeting.html.twig in BigBlueButton 8

Default theme implementation to display an iframe field.

Available variables:

  • src: Url being loaded into the iframe.
  • attributes: An array of HTML attributes, intended to be added to the iframe tag.

File

modules/bbb_node/templates/bbb-meeting.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display an iframe field.
  5. *
  6. * Available variables:
  7. * - src: Url being loaded into the iframe.
  8. * - attributes: An array of HTML attributes, intended to be added to the
  9. * iframe tag.
  10. */
  11. #}
  12. <iframe {{ attributes }}>
  13. {% trans %}
  14. Your browser does not support iframes, but you can use the following link:
  15. <a href="{{ src }}">Link</a>
  16. {% endtrans %}
  17. </iframe>