{% for author in include.authors %} {% assign matched = site.people | where:"lastname", author.last | first %} {% unless matched %}{% assign slug = author.last | slugify %}{% assign matched = site.people | where:"slug", slug | first %}{% endunless %}
  • {% if matched %}{% endif %}{{ author.first }} {{ author.last }}{% if matched %}{% endif %}
  • {% endfor %}