{% for paper in include.datapath %}
<div id="{{paper.category}}" class="modal">
<div class="modal-content">
<ul>
{% for post in site.categories[paper.category] %}
<li>{{ post.title }}</li>
{% endfor %}
</ul>
</div>
</div>
{% endfor %}
Here is the code! Here paper.category is coming from a data file. And I want that to sort my posts by category. But it’s not working! Thank you