It is necessary to show only the articles of one author in this URL. How can I do it?
Now it works like this:
<ul>
{% for p in page.find('/articles').children %}
{% for a in p.taxonomy.author %}
{% if a == author %}
<li><a href="{{ p.url }}">{{ p.title|e }}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
But check {% if page.find('/articles').children %} isn’t work correctly. Thanks.
{% set acnt = 0 %}
{% set pages = page.find('/articles').children %}
{% for p in pages %}
{% for a in p.taxonomy.author %}
{% if a == author %}
{% set acnt = acnt + 1 %}
{% endif %}
{% endfor %}
{% endfor %}
{% if acnt %}
<section class="uk-width-1-2@m articles">
<h2>{{ 'ARTICLES'|t }}</h2>
<ul class="uk-list uk-nav-default">
{% for p in pages %}
{% for a in p.taxonomy.author %}
{% if a == author %}
<li>
<a href="{{ p.url }}">{{ p.title|e }}</a>
</li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</section>
{% endif %}