{% assign author = page.author | default: page.authors[0] | default: site.author %} {% assign author = site.data.authors[author] | default: author %}
{% if author.avatar %}
{% if author.avatar contains "://" %} {% assign author_src = author.avatar %} {% else %} {% assign author_src = author.avatar | relative_url %} {% endif %} {% if author.home %} {% if author.home contains "://" %} {% assign author_link = author.home %} {% else %} {% assign author_link = author.home | relative_url %} {% endif %} {{ author.name }} {% else %} {{ author.name }} {% endif %}
{% endif %}
{% if author.home %}

{{ author.name }}

{% else %}

{{ author.name }}

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