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

Open in your IDE?
  1. <section class="footer-banner"
  2.          style="background-image: url({{ module.backgroundImage is defined ? '/uploads/productCmsFiles/' ~ module.backgroundImage : '/frontend-eforum/images/footer-banner.jpg' }})"
  3. >
  4.     {% if module.image is defined and module.image is not empty %}
  5.         <img class="footer-banner__logo"
  6.              src="/uploads/productCmsFiles/{{ module.image }}"
  7.              alt=""
  8.         >
  9.     {% endif %}
  10.     {% if module.text is defined and module.text is not empty %}
  11.         <h2 class="footer-banner__heading">
  12.             {{ module.text|raw }}
  13.         </h2>
  14.     {% endif %}
  15.     {% if module.link is defined %}
  16.         <a class="button button--white button--with-arrow footer-banner__button" href="{{ module.link }}" target="_blank">
  17.             {% if module.linkText is defined and module.linkText is not empty %}
  18.                 {{ module.linkText }}
  19.             {% else %}
  20.                 Przejdź do portalu
  21.             {% endif %}
  22.         </a>
  23.     {% endif %}
  24. </section>