A simple "Work in Progress" page with an animated GIF display.
The site displays a "Work in Progress" animated GIF on a black background. It's a minimalist placeholder page that can be used while developing or building out a website.
- Clean, centered GIF display
- Responsive design
- Dark theme with black background
- Automatic GitHub Pages deployment
- MIT Licensed - free to fork and modify
This repository uses GitHub Actions to automatically deploy to GitHub Pages whenever you push to the main branch.
-
Enable GitHub Pages
- Go to your repository's Settings → Pages
- Under Source, select Deploy from a branch
- Select the gh-pages branch
- Click Save
-
Create the gh-pages branch (if it doesn't exist)
- Go to Actions tab
- Select the Deploy to GitHub Pages workflow
- Click Run workflow
- This will create the
gh-pagesbranch and deploy your site
Your site will be available at https://your-username.github.io/repository-name/
To use a custom domain:
-
Add your domain as a repository variable
- Go to Settings → Secrets and variables → Actions → Variables tab
- Click New repository variable
- Name:
CNAME - Value: your domain (e.g.,
example.com) - Click Add variable
-
Configure GitHub Pages
- Go to Settings → Pages
- Under Custom domain, enter your domain
- Click Save
- The workflow automatically deploys your site from the
srcfolder to thegh-pagesbranch - Your
mainbranch remains unchanged, keeping it clean and easy to sync if forked - Any changes to
maintrigger an automatic deployment - The
gh-pagesbranch contains only the deployed site files
MIT