templates/uniqskills/catalogue/landing_partials/cooperators.html.twig line 1

Open in your IDE?
  1. <div style="text-align: center;"
  2.      class="landing-cooperators-section"
  3.      data-inject="{{ module.courseTitleInject is defined ? module.courseTitleInject : 'false' }}"
  4. >
  5.                     <span class="courseTitleVer2-organizer"
  6.                           style="{{ module.headerColor is defined ? 'color: ' ~ module.headerColor : '' }}"
  7.                     >
  8.                         {{ 'uniqskills.landing.inCooperationWith'|trans }}:
  9.                     </span>
  10.     {% for key, cooperator in module.cooperatorList %}
  11.         {% if cooperator.show == true %}
  12.             {% if module['cooperatorsFile_' ~ key] is defined %}
  13.                 <a href="{{ cooperator.url is defined ? cooperator.url : '' }}" target="_blank">
  14.                     <img src="{{ vich_uploader_asset(module['cooperatorsFile_' ~ key], 'file') }}"
  15.                          width="150"
  16.                          alt="{{ cooperator.description }}"
  17.                          style="margin: 15px 20px;">
  18.                 </a>
  19.             {% endif %}
  20.         {% endif %}
  21.     {% endfor %}
  22. </div>