templates/uniqskills/catalogue/landing_US2024/_partials/_recommended.html.twig line 1

Open in your IDE?
  1. {# module type: RECOMMENDED #}
  2. <section>
  3.     <div class="container course-container">
  4.         {% if module.titleName is not empty %}
  5.             <div class="text-center mb20">
  6.                 <h4 class="mb20 font2 c1 fw700">{{ module.titleName }}</h4>
  7.             </div>
  8.         {% endif %}
  9.         {% if module.courses is not empty %}
  10.             {% set coursesEntities = getCoursesEntities(module.courses) %}
  11.             <div class="row d-flex justify-content-center" id="polecamy">
  12.                 {% for course in coursesEntities %}
  13.                     <div class="col-12 col-lg-4">
  14.                         <div class="item"
  15.                              style="
  16.                                      background-image:
  17.                              {{ module.background is not empty ? 'linear-gradient(transparent 24%, ' ~ module.background ~ ' 100%)' : 'linear-gradient(transparent 24%, #181734 100%)' }},
  18.                              {{ module.backgroundImg is not empty and module.backgroundImg.variableValue is not empty ? 'url(\"/uploads/landing/' ~ module.backgroundImg.variableValue ~ '\")' : 'url(/uniqskills/US_2024/images/bg.jpg)' }};
  19.                                      "
  20.                         >
  21.                             <div class="polecamy-cont mt-auto">
  22.                                 <div class="polecamy-title">{{ course.name }}</div>
  23.                                 <div class="polecamy-txt">
  24.                                     {{ course.shortBody }}
  25.                                 </div>
  26.                                 <div class="pt20">
  27.                                     <a href="{{ path('fmUniqskillsCourseLanding', {
  28.                                         categorySlug: course.category.categorySlug,
  29.                                         slug: course.slug}) }}"
  30.                                        target="_blank" class="polecamy-cta">Sprawdź program</a>
  31.                                 </div>
  32.                             </div>
  33.                         </div>
  34.                     </div>
  35.                 {% endfor %}
  36.             </div>
  37.         {% endif %}
  38.     </div>
  39. </section>