{% for website in pagestested limit: 1 %}
Points de conformite
{% if site.data %}
{% assign lighthouse = site.data.[website].lighthouse[datelastcrawl] %}
{% else %}
{% assign lighthouse = [website].lighthouse[datelastcrawl] %}
{% endif %}
{% assign categories = lighthouse.categories %}
{% for audit in lighthouse.audits %}
{% for value in audit %}
{% if scoreDisplayMode == binary %}
{% for categorie in categories %}
{% for element in categorie %}
{% for auditRef in element.auditRefs %}
{% if value.id == auditRef.id %}{% assign titlecategorie = element.title %}{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}
{% if value.score < 0.6 %}- {{ value.title | xml_escape}}{% if value.displayValue contains 'Potential' %} {{ value.displayValue }}{% endif %}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}