<div class=“list-actions list-actions-title”>

{% for website in pagestested limit: 1 %}
<h3 class="js-expandmore mb0 mt0" data-hideshow-prefix-class="animated" id="diagnostic-quality">Points de conformite</h3>
<div class="js-to_expand">
<ul>

  {% 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 %}<li class="{{ titlecategorie | slugify }}" data-title="{{ titlecategorie }}">{{ value.title | xml_escape}}{% if value.displayValue contains 'Potential' %} <b>{{ value.displayValue }}</b>{% endif %}</li>{% endif %}
    {% endif %}
    {% endfor %}
  {% endfor %}
</ul>
</div>
{% endfor %}

</div>