{% for website in pagestested limit:1 %}
{% if whatsmyserp %}
{% if site.data %}
{% assign whatsmyserp = site.data.[website].whatsmyserp[datelastcrawl] | sort: 'position' %}
{% else %}
{% assign whatsmyserp = [website].whatsmyserp[datelastcrawl] | sort: 'position' %}
{% endif %}
{% for value in whatsmyserp | sort: 'position' %}
{% if value.position %}
- {{ value.keyword }} {{ value.position }}
{% endif %}
{% endfor %}
{% for value in whatsmyserp | sort: 'position' %}
{% if !value.position %}
- {{ value.keyword }} --
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}