--- index: false --- {% assign posts_by_author = site.posts | group_by: "author" %}
{% for author_posts in posts_by_author %} {% if author_posts.name != "" %} {% assign author_info = site.data.authors[author_posts.name] %}

{{ author_info.name | default: author_posts.name }}

{{ author_info.description | markdownify }}
{% assign article_number = author_posts.items | size %}

{{ article_number}} article{% if article_number != 1 %}s{% endif %}

{% endif %} {% endfor %}