{% set blist = [] %} {% set catlist = taxonomy.taxonomy["category"]|keys %} {% if grav.theme.config.params.articles.blacklist is defined %} {% set blist = grav.theme.config.params.articles.blacklist %} {% set tmplst = [] %} {% for cat in catlist %} {% if cat not in blist %} {% set tmplst = tmplst|merge([cat]) %} {% endif %} {% endfor %} {% set catlist = tmplst %} {% endif %} {% for cat in catlist %} {% set catpages = taxonomy.findTaxonomy({'author': author,'category':cat}).order('date', 'desc') %} {% if catpages|length > 0 %}