please how can I show the author personal image if I have id defined in collections:
My collection /_authors/
name: John Doe
image: assets/img/photo-john.jpg
layout: author
permalink: "/authors/john-doe/"
How do I show it in the article loop?
{% for post in site.posts %}
{% assign author = site.authors[page.author] %}
<img src="{{ site.baseurl }}/{{ author.image }}" alt="{{ post.author }}" class="avatar avatar-sm">
{% endfor %}