You are here

link-iframe-formatter.html.twig in Link iframe formatter 2.x

Same filename and directory in other branches
  1. 8 templates/link-iframe-formatter.html.twig
{% spaceless %}
  <iframe width="{{ width }}" height="{{ height }}" src="{{ url }}" class="{{ class }}" frameborder="0" scrolling="{{ scrolling }}" allowfullscreen></iframe>
  {% if original %}
    <div class="link-iframe-formatter-original">{{ 'You may view the original link at:'|t }} <a
    href="{{ url }}">{{ url }}</a><div>
  {% endif %}
{% endspaceless %}

File

templates/link-iframe-formatter.html.twig
View source
  1. {% spaceless %}
  2. <iframe width="{{ width }}" height="{{ height }}" src="{{ url }}" class="{{ class }}" frameborder="0" scrolling="{{ scrolling }}" allowfullscreen></iframe>
  3. {% if original %}
  4. <div class="link-iframe-formatter-original">{{ 'You may view the original link at:'|t }} <a
  5. href="{{ url }}">{{ url }}</a><div>
  6. {% endif %}
  7. {% endspaceless %}