Engage Card Image

The Engage Card Image component.

Generic Placeholder

Image Highlight

Morbi video risus, porta ac consectetur ac, vestibulum at eros. Nullam quis risus eget urna mollis ornare vel eu leo.
Markup Details
                            {{ attach_library('goizueta_theme/engage-card-image') }}
{%
  set attributes = attributes ? attributes.addClass('engage-card-image') : ' class="engage-card-image"'
%}

<article{{ attributes|raw }}>
  {% if image %}
    <div class="engage-card__image">
      {{ image }}
    </div>
  {% endif %}
  {% if title %}
    {%
      include '@components/heading/heading.twig' with {
        "heading": {
          "title_light": title,
          "heading_level": 3,
          "classes": 'engage-card__title'
        }
      } only
    %}
  {% endif %}

  {% if body %}
    <div class="engage-card__body">
      {{ body }}
    </div>
  {% endif %}

  {% if cta %}
    <div class="engage-card__cta">
      {%
        include '@components/button/button.twig' with {
          "button": cta
        } only
      %}
    </div>
  {% endif %}

</article>