modal_description.html.twig 675 B

12345678910111213141516171819202122
  1. {% autoescape false %}
  2. <div class="popup-course">
  3. {% set video = '' %}
  4. {% for item in data.extrafield %}
  5. {% if item.text == 'VideoUrl' %}
  6. {% set video = item.value %}
  7. {% endif %}
  8. {% endfor %}
  9. {% if video %}
  10. <div class="popup-video">
  11. <div class="embed-responsive embed-responsive-16by9">
  12. {{ essence.replace(video) }}
  13. </div>
  14. </div>
  15. {% endif %}
  16. <div class="popup-content">
  17. <h2 class="title">{{ data.description.title }}</h2>
  18. {{ data.description.content }}
  19. </div>
  20. </div>
  21. {% endautoescape %}