A minimal static blog scaffold built for GitHub Pages. Each post lives in its own folder under posts/, giving you clean URLs and an easy place to organize assets per article.
.
├── index.html # Main landing page with post listings
├── posts/
│ └── test/
│ └── index.html # Example "Hello world" post
└── styles/
└── post.css # Shared styling for individual posts
- Duplicate the
posts/testfolder and rename it to match your post slug, e.g.posts/my-first-post. - Update that folder’s
index.htmlwith your article content. - Add an entry for the new post in
index.htmlso it appears on the home page.
Commit the changes and push to your main branch—GitHub Pages will publish the latest version automatically.