This repository contains the source code for Michael Shoemaker's GitHub Pages site.
If you’d like to make your own website using this as a template, you can either use the "Use this template" button on the repo. The video below gives a brief walkthrough.
OR follow the steps below — it’s simple and free!
-
Go to the original repository:
👉 https://github.com/MichaelShoemaker/michaelshoemaker.github.io -
In the top-right corner, click ⭐ Fork.
-
You’ll now have your own copy at
https://github.com/<your-username>/michaelshoemaker.github.io
To make it your own personal website:
- Go to your new repository’s Settings → General.
- Scroll down to Repository name.
- Rename it to: yourusername.github.io
Example: If your GitHub username is
janedoe, rename it to
janedoe.github.io
This automatically tells GitHub Pages to host your site at
👉 https://yourusername.github.io
If it isn’t already active:
- Go to your repo’s Settings → Pages (in the left sidebar).
- Under Build and deployment, choose:
- Source:
Deploy from a branch - Branch:
main - Folder:
/ (root)
- Click Save.
After a few moments, your site should appear at your new URL!
You now have a working copy of this website!
To personalize it:
- Edit the
_config.ymlfile — update: title,description,url, and social links- Replace any content in
.htmlor.mdfiles with your own text and images - Commit and push your changes — GitHub Pages will rebuild automatically
Example from the command line:
git add .
git commit -m "Personalize site"
git push origin main