Newer
Older
<ul class="list-inline">
{% for author in include.authors %}
{% assign matched = site.people | where:"lastname",author.last | first %}
<li class="list-inline-item">{% if matched %}<a href="{{ matched.url }}">{% endif %}{{ author.first }} {{ author.last }}{% if matched %}</a>{% endif %}</li>
{% endfor %}
</ul>