I have a _data/members.yml file, which has ~500 items in the array. I want to show it in a single page with for loop. However, it only show the first 30 items. Is there a way to remove this limit? ( I didn’t add any limit by my own
sample code:
{% for member in site.data.members %}
{{ member.name }}
{% endfor %}
I believe I saw this 30 limit somewhere, but I can find it anymore. Please help! Thanks!