Currently utilizing Jekyll, I've organized my project with a folder named "articles" at the root. Inside this folder, there are two subfolders: "fr" and "eng".
My objective is to loop through the "fr" folder on one page and the "eng" folder on another.
I attempted to use
{% for this in site.articles.fr %}
, but it was unsuccessful.
I also experimented with
{% assign folder1 = site.articles | where_exp: "this" , "this.path contains 'folder1'"%}
{% for this in folder1 %}
, but it didn't work either.
Is there an alternative method to achieve this?