{% assign authors = page.authors | default: page.author %} {% for author_name in authors %} {% assign author = site.data.authors[author_name] | default: author_name %}
{% if author.avatar %}
{{ author.name }}
{% endif %}

{% if author.bio %}
{{ author.bio | markdownify }}
{% endif %}
{% endfor %}