Faculty Header Card

This is the Faculty Header Card (faculty-card) component which is normally used in the faculty detail page and also in the Faculty Container component.

Markup Details
                            {{ attach_library('goizueta_theme/faculty-card') }}
{% import '@components/icons/icons.twig' as icons %}

{%
  set attributes = attributes ? attributes.addClass('faculty-card' ~ faculty_card.classes|default('')) : ' class="faculty-card' ~ faculty_card.classes|default('') ~ '"'
%}

<article {{ attributes|raw }}>
  <div class="faculty-card__inner">
    <div class="faculty-card__image">
      {{ faculty_card.image }}
    </div>
    <div class="faculty-card__content">
      {% if faculty_card.eyebrow %}
        <div class="faculty-card__content--eyebrow">
          {{ faculty_card.eyebrow }}
        </div>
      {% endif %}

      {% if faculty_card.heading %}
        {%
          include '@components/heading/heading.twig' with {
            "heading": faculty_card.heading
          } only
        %}
      {% endif %}

      <div class="faculty-card__content--body">
        {{ faculty_card.body }}
        {% if faculty_card.location_room is not empty %}
          <div class="faculty-card__location-room">
            <svg width="30px" height="30px" version="1.1" id="Layer_1"
              xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
              stroke="#002169" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
              x="0px" y="0px" viewbox="0 0 102 102" style="position: relative; top: 4px; margin-right: 8px" xml:space="preserve">
              <polygon points="91.3,39.3 9.9,39.3 5.7,27.2 95.2,27.2 "/>
              <g>
                <path d="M5.7,100l3.8-11.4c0.3-0.9,1.1-1.5,2-1.5h78.3c0.9,0,1.7,0.6,2,1.5l3.8,11.4"/>
                <rect x="14.3" y="40.1"  width="72.8" height="47.1"/>
                <line x1="99.9" y1="100" x2="1.4" y2="100"/>
                <line x1="27.1" y1="40.1" x2="27.1" y2="87.2"/>
                <line x1="40" y1="40.1" x2="40" y2="87.2"/>
                <line x1="61.4" y1="40.1" x2="61.4" y2="87.2"/>
                <line x1="74.2" y1="40.1" x2="74.2" y2="87.2"/>
                <path d="M95,28.9c0.3-1-0.1-2-1-2.5L51.7,2.1c-0.7-0.4-1.5-0.4-2.1,0L7.2,26.3c-0.9,0.5-1.3,1.6-1,2.5l3.3,9.7
                      c0.3,0.9,1.1,1.5,2,1.5h78.3c0.9,0,1.7-0.6,2-1.5L95,28.9z"/>
                <line x1="94.9" y1="27.2" x2="6.4" y2="27.2"/>
              </g>
            </svg>
            {{ faculty_card.location_room }}
          </div>
        {% endif %}
      </div>
      <div class="faculty-card__learn-more">
        {% block ctas %}
          {% for item in faculty_card.ctas %}
            {%
              include '@components/button/button.twig' with {
                "button": item.button
              }
            %}
          {% endfor %}
        {% endblock %}
      </div>
    </div>
  </div>
</article>