templates/components/interest-box.html.twig line 1

Open in your IDE?
  1. <a href="{{ url is defined ? url|default('#') }}">
  2.     <div style="height: 8rem"; class="position-relative">
  3.         <div class="position-absolute w-100 h-100" style="background-image: url('{{ image }}'); background-position: center; background-repeat: no-repeat; background-size: cover;"></div>
  4.     </div>
  5.     <div class="bg-grey p-3 interest-box-text">
  6.         <span class="line-clamp clamp-1 fw-bold">{{ title }}</span>
  7.         <span class="line-clamp clamp-2">{{ text|raw }}</span>
  8.     </div>
  9. </a>