I have my blog MD files under content/blog/firstblog.md and articles under content/articles. I can read them when I do hugo server in my local environment but on github pages when I click on my blogs it gives me 404 error. This is my repo GitHub - ArkaprabhaChakraborty/ArkaprabhaChakraborty.github.io . What should I do?
Rename every index.md file to _index.md. Search the documentation for “page bundles.”
And change the date values in front matter to a valid date string.
If I change every index.md to _index.md then the homepage is not getting rendered.
content
└── blog <-- Section, because first-level dir under content/
├── funny-cats
│ ├── mypost.md
│ └── kittens <-- Section, because contains _index.md
│ └── _index.md
└── tech <-- Section, because contains _index.md
└── _index.md
Nope didn’t help. https://arkaprabhachakraborty.github.io/ Blogs and projects section is still showing 404 and I have made the changes as said.
Can anyone help me out ?
Just delete articles/index.md
and blog/index.md
Nope :). Doesn’t work either
Hey!!! surprise it actually works now . Just need one help … I want my /home to be my root URL, ie https://arkaprabhachakraborty.github.io should show the same “page” as the current “/home”.