templates/components/three-links-box.html.twig line 1

Open in your IDE?
  1. <div class="three-links-box d-flex justify-content-between flex-column p-3 p-md-5 {{ backgroundColorClass|default('bg-grey') }}">
  2.     <div>
  3.         <h3 class="fw-bolder">{{ title }}</h3>
  4.         <div class="mb-3">
  5.             {{ text|raw }}
  6.         </div>
  7.     </div>
  8.     <div class="d-flex flex-column">
  9.         {% for link in links %}
  10.             {{ link|raw }}
  11.         {% endfor %}
  12.     </div>
  13. </div>