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

Open in your IDE?
  1. <div class="courseTitleVer2"
  2.      style="{{ module.backgroundImageColorRadio == 'color' ? 'background-color: ' ~ module.background : '' }}"
  3.      data-image="{{ module.backgroundImageColorRadio }}"
  4.      data-background="{{ vich_uploader_asset(module.backgroundImage, 'file') }}"
  5.      data-background-mobile="{{ vich_uploader_asset(module.backgroundImageMobile, 'file') }}"
  6. >
  7.     <div class="container">
  8.                         <span class="courseTitleVer2-label"
  9.                               style="background-color: {{ module.labelBackground }}; color: {{ module.labelColor }}">
  10.                             {{ module.label|raw }}
  11.                         </span>
  12.         <h1 style="padding: 10px; {% if module.titleBackground is defined %} background-color: {{ module.titleBackground}}; {% endif %} {{ module.titleColor ? 'color: ' ~ module.titleColor}} ">{{ course.name }}</h1>
  13.         {% if module.subTitle is defined %}
  14.             <h2 class="courseTitleVer2-subtitle"
  15.                 style="
  16.                 {% if module.subTitleColor is defined %} color: {{ module.subTitleColor }}; {% endif %}
  17.                                     {% if module.subTitleBackground is defined %} background-color: {{ module.subTitleBackground }}; {% endif %}
  18.                         "
  19.             >
  20.                 {{ module.subTitle|raw }}
  21.             </h2>
  22.             <a href="#" style="margin-bottom:10px;"
  23.                class="button button-blueBackground signInNow"
  24.             >
  25.                 {{ 'uniqskills.landing.signInNow'|trans }}
  26.             </a>
  27.         {% endif %}
  28.         <div class="cooperators-inject-area"></div>
  29.     </div>
  30. </div>