templates/components/card-small.html.twig line 1

Open in your IDE?
  1. {% set customLinkDefined = customLink is defined and customLink is not empty %}
  2. {% set customAnchorDefined = customAnchor is defined and customAnchor is not empty %}
  3. {% if customLinkDefined %}
  4. <sulu-link href="{{ customAnchorDefined ? '%s%s'|format(customLink, customAnchor) : customLink }}">
  5. {% else %}
  6. <a href="{{ link }}">
  7. {% endif %}
  8.     <img class="w-100" src="{{ image }}" alt="">
  9.     <div class="bg-darker-blue text-white card-small" data-match-height="card-small">
  10.         <div class="p-3">
  11.             {% if (title is defined) %}
  12.                 <h5>{{ title }}</h5>
  13.             {% endif %}
  14.             {% if (text is defined) %}
  15.                 <span>{{ text|raw }}</span>
  16.             {% endif %}
  17.         </div>
  18.     </div>
  19. {% if customLinkDefined %}
  20. </sulu-link>
  21. {% else %}
  22. </a>
  23. {% endif %}