I am new to Jekyll and trying to create separate pages for each ‘.md’ file in my collection.
Under _config.yml I have defined:
# Collections for website data
collections:
modules:
output: true
permalink: /:collection/:path
folder: _modules
sort_by: date
staffers:
schedules:
announcements:
just_the_docs:
# Define which collections are used in just-the-docs
collections:
# Reference the "tests" collection
modules:
# Give the collection a name
name: Modules
nav_fold: True
Below is the directory structure of my “_modules” collection
_modules/
2024-01-16-class_intro.md
2024-01-18-text_rep.md
2024-01-23-lang-mod.md
2024-01-25-seq_enc.md
2024-01-30-transformers.md
2024-02-01-generation.md
2024-02-06-prompt.md
2024-02-08-nlp_tasks_inst.md
2024-02-13-RL.md
When I am testing locally, I can see the link to each module, but for each link I get 404 not found
Example for the first module: the generated link is http://127.0.0.1:4000/class/anlp2024/modules/2024-03-26-bias_fair - Which gives the error 404 not found
Why are the sub-pages not getting rendered. Any help would be appreciated! Thank you