Faculty in the News

This is the Faculty in the News listing.

Markup Details
                            {{ attach_library('goizueta_theme/faculty-in-news') }}

<div class="faculty-in-the-news">
  {% if heading %}
    {%
      include '@components/heading/heading.twig' with {
        "heading": heading
      } only
    %}
  {% endif %}

  {% block news_articles %}
    <ul class="faculty-in-the-news__list">
      {% for item in items %}
        <li class="faculty-in-the-news__item">
          <div class="faculty-in-the-news__title">
            {%
              include '@components/heading/heading.twig' with {
                "heading": item.title,
              }
            %}
          </div>
          <div class="faculty-in-the-news__date">
            {{ item.date }}
          </div>
        </li>
      {% endfor %}
    </ul>
  {% endblock %}
</div>