custom/static-plugins/shopping-experiences/src/Resources/views/storefront/element/cms-element-hero-page-link.html.twig line 1

Open in your IDE?
  1. {% block element_hero_page_link %}
  2.     <div class="hero-page-link-text-container">
  3.         {% if element.config.headline.value != '' %}<h2
  4.                 class="hero-page-link-headline">{{ element.config.headline.value }}</h2>
  5.         {% endif %}
  6.         {% if element.config.mainText.value != '' %}<p
  7.                 class="hero-page-link-main-text">{{ element.config.mainText.value }}</p>
  8.         {% endif %}
  9.         {% if element.config.buttonText.value != '' and element.config.showButton.value %}<a href="{{ element.config.buttonLink.value }}"
  10.                 class="btn hero-page-link-button">{{ element.config.buttonText.value }}</a>
  11.         {% endif %}
  12.     </div>
  13. {% endblock %}