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

Open in your IDE?
  1. <section class="product-banner">
  2.     {% if injectBreadcrumbs is defined and injectBreadcrumbs == true %}
  3.         {% include "frontend-eforum/_partials/breadcrumbs.html.twig" %}
  4.     {% endif %}
  5.     <div class="faqTop">
  6.         <div class="container">
  7.             <div class="row">
  8.                 {% if module.icon is defined %}
  9.                     <div class="col-md-1">
  10.                         <div class="faqTop__icon">
  11.                             <span class="icon--{{ module.icon }}"></span>
  12.                         </div>
  13.                     </div>
  14.                 {% endif %}
  15.                 <div class="col-md-10">
  16.                     <a href="{{ module.linkedTemplate is defined ? path('efShowDynamicTemplate', {'dynamicType': module.linkedTemplate}) : '' }}"
  17.                        class="faqTop__back">
  18.                         <span class="icon--arrow-left"></span>
  19.                         {% if module.linkText is defined %}
  20.                             {{ module.linkText }}
  21.                         {% else %}
  22.                             Powrót do wyboru tematu
  23.                         {% endif %}
  24.                     </a>
  25.                     {% if module.title is defined %}
  26.                         <h1 class="faqTop__title">{{ module.title }}</h1>
  27.                     {% endif %}
  28.                 </div>
  29.             </div>
  30.         </div>
  31.     </div>
  32. </section>