templates/Blocks/CallToAction/Frontend/renderFrontend.html.twig line 1

Open in your IDE?
  1. <section class="block block-call-to-action bg-orange block-padded">
  2.     <div class="cta-wrap">
  3.         <div class="container">
  4.             <div class="row">
  5.                 <div class="col-lg-10">
  6.                     <h2>{{ data.title }}</h2>
  7.                 </div>
  8.                 <div class="col-lg-2">
  9.                     {% if data.buttonUrl and data.buttonLabel %}
  10.                         <a href="{{ data.buttonUrl }}" class="btn btn-primary ripple">{{ data.buttonLabel }}</a>
  11.                     {% endif %}
  12.                 </div>
  13.             </div>
  14.         </div>
  15.     </div>
  16. </section>