templates/frontend-eforum/_partials/modules/aboutMeetMedia.html.twig line 1

Open in your IDE?
  1. <section class="aboutMeetMedia"
  2.          style="{{ module.backgroundImage is defined ? 'background-image:url(/uploads/productCmsFiles/' ~ module.backgroundImage ~ ');' : '' }}"
  3. >
  4.     <div class="container">
  5.         <div class="row">
  6.             <div class="col col-xs-12">
  7.                 <div class="aboutMeetMedia__text">
  8.                     {% if module.title is defined %}
  9.                         <h1>{{ module.title }}</h1>
  10.                     {% endif %}
  11.                     {% if module.description is defined %}
  12.                         {{ module.description|raw }}
  13.                     {% endif %}
  14.                 </div>
  15.                 {% if module.icons is defined %}
  16.                     <div class="aboutMeetMedia__icons">
  17.                         {% for icon in module.icons %}
  18.                             <div class="aboutMeetMedia__icon">
  19.                                 {% if icon.icon is defined %}
  20.                                     <span class="aboutMeetMedia__iconIco icon--{{ icon.icon }}"></span>
  21.                                 {% endif %}
  22.                                 {% if icon.title is defined %}
  23.                                     <h3 class="aboutMeetMedia__iconsTitle">{{ icon.title }}</h3>
  24.                                 {% endif %}
  25.                             </div>
  26.                         {% endfor %}
  27.                     </div>
  28.                 {% endif %}
  29.             </div>
  30.         </div>
  31.     </div>
  32. </section>