{% if post.author %}
{% assign author = post.author %}
{% elsif page.author %}
{% assign author = page.author %}
{% else %}
{% assign author = site.author %}
{% endif %}
{% if author %}
{% assign person = site.data.people[author] %}
{% if person %}
{{ person.name }}
{% else %}
{% icon "mdi:person" %} {{ author }}
{% endif %}
{% endif %}