-
Select Topic AreaQuestion BodyHi I created a github pages site using the Jekyll modernist theme and it works OK locally when tested using Jekyll. It has index.md in the root and is deployed from the root of the main branch. Yet when github deploys it, I get a 404. I tried adding a nojekyll file and it makes no difference. I have read the docs but not got anywhere. Any help appreciated and my apologies if I overlooked something simple. Site url: https://99zardoz.github.io/github.io/ Repository contents: Pages section |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @99zardoz , By default GitHub Pages will look for an |
Beta Was this translation helpful? Give feedback.
Hi @99zardoz ,
By default GitHub Pages will look for an
index.html
,index.md
, orREADME.md
file as the entry file for your site, as I can see from your screenshot, you have a file namedIndex.md
, rename it toindex.md
; that's important because GitHub Pages is case sensitive so you should always name your index files in lower case.