My site has the following structure,
-- content /
-- cn /
-- post /
-- teach /
-- en /
-- post /
-- read /
And I want to list all the posts in the folder “content/cn/post” but not the posts in the folder “content/cn/teach”.
But the rendered list contained all the posts both in “content/cn/post” and in “content/cn/teach”.
What should I do to fulfill my aims?
The following is the source code of my site: https://github.com/rbind/likan
Thanks.