{% for website in pagestested %}

{% if site.data %}
{% assign axe = site.data.[website].axe[datelastcrawl] %}
{% else %}
{% assign axe = [website].axe[datelastcrawl] %}
{% endif %}

<h3 class="js-expandmore mb0 mt0" data-hideshow-prefix-class="animated">{{ website }} - Impact : Critical</h3>
<div class="js-to_expand">

  <div class="axe flex-list">
  {% for a11y in axe limit: 1 %}

  {% for a11ylist in a11y %}
  {% for a11yvalue in a11ylist %}

    {% for elm in a11yvalue %}
    {% if elm.impact == 'critical' %}
    <div><strong>> {{ elm.description | xml_escape }}</strong><br>
      <ul>
        {% for node in elm.nodes %}
        <li>{{ node.target | replace:'\"','"' | replace:'\\3','' | replace:'\\=','=' | replace:' ','' | xml_escape }}</li>
        {% endfor %}
      </ul>
    </div>
    {% endif %}
    {% endfor %}

  {% endfor %}
  {% endfor %}

  {% endfor %}
  </div>

</div>

{% endfor %}