Go to github.com/pimec25/The-Enlightenment, click the existing index.html → pencil icon to edit → then use the upload option to replace it with this file. Commit and GitHub Pages redeploys automatically.
One thing worth flagging — are you having trouble getting the site to show at pimecassolutions.com? If the domain still isn't resolving correctly after the DNS changes, share what you're seeing and I can help troubleshoot directly.
Also check that your CNAME file (not CNAME.txt) contains exactly:
textpimecassolutions.com
with no extra spaces or .txt extension. The CNAME.txt file should also be deleted — only the plain CNAME file should remain.
Once you upload index.html and commit, GitHub Pages will rebuild automatically within 60 seconds and pimecassolutions.com will go live.
The problem is clear — the index.html is still not in the repo correctly. The file keeps getting saved as !DOCTYPE html.txt instead of index.html. This happens when the browser tries to open the HTML file instead of downloading it.
Here's how to download it correctly and upload it:
Step 1 — Download the file correctly
Click the index.html attachment above → when it opens in your browser, do File → Save As and make sure the filename is exactly index.html (not !DOCTYPE html.txt, not index.html.txt). Save it to your Desktop.
Step 2 — Delete the bad file from GitHub
Click on
!DOCTYPE html.txtClick the trash/delete icon (top right of the file view)
Commit the deletion
Step 3 — Upload the correct file
Back in the repo, click Add file → Upload files
Drag your
index.htmlfrom the DesktopBefore committing, confirm the filename shown is
index.html— if it shows anything else, rename it on your Desktop first and try againClick Commit changes
Step 4 — Also upload the 4 image files
The images need to be there too or the cover art won't load:
press-photo.jpgtwisted-me.jpglegacy-in-motion.jpgfell-in-love-ai-girl.jpg
Right-click each image on pimecassolutionscom.pplx.app → Save image as → use the exact filename above.
Once index.html commits successfully you'll see it listed in the repo and pimecassolutions.com will go live within 60 seconds.
Good progress — index.html is in the repo and the domain is resolving. The black screen is because the image files have wrong filenames. The HTML references lowercase hyphenated names but the repo has a mix. Specifically, twisted-me.jpg is missing — it was deleted — and Legacy In Motion.jpg has spaces in the name instead of legacy-in-motion.jpg.
The text and layout are actually there (dark background is correct), but the images aren't loading. Here's the exact fix:
What needs to be corrected in the repo
Delete these wrongly-named files:
Legacy In Motion.jpg(spaces in filename — won't work)
Re-upload these files with exact filenames:
| Must be named exactly | Status |
|---|---|
twisted-me.jpg | Missing — was deleted |
legacy-in-motion.jpg | Wrong name in repo (Legacy In Motion.jpg) |
fell-in-love-ai-girl.jpg | ✅ Correct |
press-photo.jpg | ✅ Correct |
Steps
Click
Legacy In Motion.jpg→ trash icon → commit deletionClick Add file → Upload files
Upload
twisted-me.jpgandlegacy-in-motion.jpg(right-click each on pimecassolutionscom.pplx.app → Save image as → use exact lowercase hyphenated filenames)Commit — site rebuilds in ~60 seconds
Once those two files are in with the correct names, the full page will render properly at pimecassolutions.com.
How to replace it correctly
The key issue is making sure the full file downloads — do not open it in your browser first. Here's the safest method:
Click the
index.htmlattachment aboveRight-click the download button → Save link as → save as
index.htmlto your DesktopClick the existing
index.htmlin the repoClick the pencil (edit) icon
Scroll to the top, select all the text (Ctrl+A / Cmd+A) and delete it
Open the downloaded
index.htmlin a text editor (Notepad on Windows, TextEdit on Mac), select all, copyPaste into the GitHub editor
Click Commit changes
This guarantees the full 1,038-line file goes in rather than an incomplete version. Once committed, pimecassolutions.com will update within 60 seconds and the full page will render.