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

Open in your IDE?
  1. <section class="product-section product-preface" id="{{ moduleKey }}">
  2.     <div class="container">
  3.         <div class="product-section__content">
  4.             {% if module.title is defined %}
  5.                 <h2 class="product-section__title">{{ module.title }}</h2>
  6.             {% endif %}
  7.             {% if module.description is defined %}
  8.                 <p>
  9.                     {{ module.description|raw }}
  10.                 </p>
  11.             {% endif %}
  12.         </div>
  13.     </div>
  14. </section>