{% for website in pagestested limit:1 %}

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

{% if serpstat %}
<h3>Concurrents</h3>
<div class="list-actions list-actions-grid">
<ol>
  {% for value in serpstat %}
  <li><a href="{{ value.domain }}">{{ value.domain }}</a> {% if value.FBshare %}<b>{{ value.FBshare }} {% include svg/facebook.svg %}</b>{% endif %}</li>
  {% endfor %}
</ol>
</div>
<h3>Graphique de similarité</h3>
<div class="center">
{% include competitorsgraph.html %}
</div>
{% endif %}

{% endfor %}