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

Open in your IDE?
  1. <section class="product-section product-jumbotron product-demo"
  2.          id="{{ moduleKey }}"
  3.          style="{{ module.backgroundImage is defined ? 'background-image: url(/uploads/productCmsFiles/' ~ module.backgroundImage ~ ')' : ''}}"
  4. >
  5.     <div class="container">
  6.         <div class="product-section__content">
  7.             {% if module.title is defined %}
  8.                 <h2 class="product-section__title product-demo__title">{{ module.title }}</h2>
  9.             {% endif %}
  10.             {% if module.picture is defined %}
  11.                 <img src="/uploads/productCmsFiles/{{ module.picture }}" alt=""/>
  12.             {% endif %}
  13.             {% if module.file is defined %}
  14.                 <div class="product-section__contentButtonRight">
  15.                     <a href="/uploads/productCmsFiles/{{ module.file }}"
  16.                        target="_blank"
  17.                        class="button button--bordered button--with-arrow button--white button-app-white"
  18.                     >
  19.                         {% if module.viewFileButtonText is defined %}
  20.                             {{ module.viewFileButtonText }}
  21.                         {% endif %}
  22.                     </a>
  23.                 </div>
  24.             {% endif %}
  25.         </div>
  26.     </div>
  27. </section>