I have a code like this
--- html
{% for item in site.social %}
<li>
<a href="{{ item.url }}"><i class="fa fa-{{ item.icon }}"></i>
</a>
</li>
{% endfor %}
TXT
and in site.yaml I have
social:
url:
- https://fr-fr.facebook.com/
- https://github.com/
icon: - facebook-square
- github
TXT
and wen I refresh my webpage I have 2 <li> but the value of item.url and item.icon are empty