You are here

imce-help.html.twig in IMCE 8

Same filename and directory in other branches
  1. 8.2 templates/imce-help.html.twig
<p>
  {{ markup }}
</p>

{% if videos %}
<h3>{{ 'Related Videos'|t }}:</h3>

  {% for video in videos %}

    <h4>{{ video.title }}</h4>
    <iframe width="560" height="315" src="{{ video.video }}" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
    <br/><br/>

  {% endfor %}

{% endif %}

File

templates/imce-help.html.twig
View source
  1. <p>
  2. {{ markup }}
  3. </p>
  4. {% if videos %}
  5. <h3>{{ 'Related Videos'|t }}:</h3>
  6. {% for video in videos %}
  7. <h4>{{ video.title }}</h4>
  8. <iframe width="560" height="315" src="{{ video.video }}" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  9. <br/><br/>
  10. {% endfor %}
  11. {% endif %}