Skip to content
Snippets Groups Projects
publication-authors.html 311 B
Newer Older
  • Learn to ignore specific revisions
  • <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>