templates/blocks/iframe.html.twig line 1

Open in your IDE?
  1. {% set height = "100%" %}
  2. {% if block.height is defined and block.height is not empty %}
  3.     {% set height = block.height %}
  4. {% endif %}
  5. <iframe
  6.   width="100%"
  7.   height="{{ height }}"
  8.   class="mt-1em dblock"
  9.   src="{{block.url}}">
  10. </iframe>