Hello there
I have in blog_item.html.twig the following code to show the author of post:
TWIG
{% if page.header.author %}
<a href="{{ page.url }}" class="author"><span class="name" rel="author">{{ page.header.author }}</span><img src="{{ page.media[page.header.avatarImage].url|e}}" alt="{{ page.header.author }}" /></a>
{% endif %}
I'd like to configure in href="" the code to call all articles posted by the author (similiar to list of posts by taxonomy). author is defined in configuration as taxonomy type.
How I can do this?
Thanks in advance.