A minimal, dark-themed blog built with static HTML and CSS. No frameworks, no Jekyll — just clean files deployed on GitHub Pages.
├── index.html # Home / profile page with blog listing
├── style.css # Shared stylesheet
├── .nojekyll # Tells GitHub to skip Jekyll processing
├── README.md # This file
└── posts/
└── github-achievements.html # Blog post: All the GitHub Achievements
- Fork or clone this repo
- Replace
yourusernamewith your actual GitHub username inindex.htmland the post files - Customize the profile section in
index.htmlwith your name, bio, and links - Go to Settings → Pages → Deploy from branch and select
main - Your site will be live at
https://yourusername.github.io
- Create a new
.htmlfile inside theposts/folder (copy an existing post as a template) - Add a new post card to
index.htmllinking to your new post - Commit and push — GitHub Pages deploys automatically
- Colors: Edit CSS variables in
:rootat the top ofstyle.css - Fonts: Change the Google Fonts import in the
<head>of each HTML file - Layout: The max content width is controlled by
--max-widthinstyle.css
- Pure HTML + CSS + vanilla JS
- Google Fonts (Outfit + JetBrains Mono)
- No build step, no dependencies
- Responsive by default
Do whatever you want with it. No attribution needed.