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

Open in your IDE?
  1. <div class="site-wrapper__bg"
  2.      style="{{ module.backgroundImage is defined ? 'background-image: url(/uploads/productCmsFiles/' ~ module.backgroundImage ~ ')' : '' }}"
  3. ></div>
  4. <section class="jumbotron">
  5.     <div class="container">
  6.         <div class="row">
  7.             {% if module.image is defined %}
  8.                 <img class="jumbotron__product"
  9.                      src="/uploads/productCmsFiles/{{ module.image }}"
  10.                      alt="{{ module.title is defined ? module.title : '' }}"
  11.                 >
  12.             {% endif %}
  13.             <div class="col-xs-12 col-sm-6 col-md-6 col-lg-5 col-lg-offset-1">
  14.                 <header class="jumbotron__header">
  15.                     {% if module.title is defined %}
  16.                         <h2 class="jumbotron__heading">{{ module.title }}</h2>
  17.                     {% endif %}
  18.                     {% if module.description is defined %}
  19.                         <h3 class="jumbotron__subheading">{{ module.description }}</h3>
  20.                     {% endif %}
  21.                     {% if module.linkText is defined and module.linkText is not empty and module.link is defined and module.link is not empty %}
  22.                         <a class="jumbotron__button button button--white button--with-arrow"
  23.                            href="{{ module.link }}"
  24.                         >
  25.                             {{ module.linkText }}
  26.                         </a>
  27.                     {% endif %}
  28.                 </header>
  29.             </div>
  30.         </div>
  31.     </div>
  32. </section>