Related Events

This is the Related Events component.

Related Events

  • Monday September
    25

    Women's Leadership Event - New York City

    location-pin
    Location PWC, 300 Madison Avenue, New York, NY 10017
  • Tuesday September
    20

    Women's Leadership Event - New York City

    location-pin
    Location PWC, 300 Madison Avenue, New York, NY 10017
  • Wednesday September
    31

    Women's Leadership Event - New York City

    location-pin
    Location PWC, 300 Madison Avenue, New York, NY 10017
Markup Details
                            {{ attach_library('goizueta_theme/related-events') }}

{# {%
  set attributes = attributes ? attributes.addClass('related-events') : ' class=related-events'
%} #}

<div class="related-events">
  {% if heading %}
    {%
      include '@components/heading/heading.twig' with {
        "heading": heading
      } only
    %}
  {% endif %}

  <ul class="related-events__list">
    {% block rows_content %}
    {% for item in items %}
      <li class="related-events__item">
        {%
          include '@components/event-card/event-card.twig' with {
            "event_card": item.event_card
          } only
        %}
      </li>
    {% endfor %}
    {% endblock %}
  </ul>
</div>