Directory Structure Not Working/Understandable #2703
-
I'm sure that this question has an easy answer, but I absolutely cannot understand the navigation structure. What I am trying to achieveProjects should show text about recursion under the _projects folder. I'm running my website locally on ruby but have uploaded it to github pages now : https://khanfarhan10.github.io/ . Thanks in advance, much appreciated. I'm new to Jekyll and ruby. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Now that I have a basic understanding of jekyll, I still don't understand how the posts, research and project pages are generated on my github pages website : khanfarhan10.github.io. I want to know how to separately add pages for each of them, viz , posts research and projects. The source code is at my repository |
Beta Was this translation helpful? Give feedback.
-
Check the docs: https://jekyllrb.com/docs/collections/ You need to explicitly enable collections and render them into pages in your collections:
my_collection:
output: true
my_another_collection:
output: true |
Beta Was this translation helpful? Give feedback.
Check the docs: https://jekyllrb.com/docs/collections/
You need to explicitly enable collections and render them into pages in your
_config.yml
: