This repository contains a static personal website for Sebastian Calonico. It is designed for GitHub Pages and does not require a build step.
index.htmlis the publish-ready homepage.standard-*.htmlfiles are the additional section pages.standard-styles.csscontains the styling for the standard published site.standard-script.jsadds the footer year and mobile navigation behavior..nojekylltells GitHub Pages to serve the site directly as static files.
The cleanest option is to create a repository named scalonico.github.io. If you do that, the site will publish at:
https://scalonico.github.io/
If you use a different repository name, GitHub Pages will publish it at a project URL such as:
https://scalonico.github.io/repository-name/
Run these from this folder after creating the GitHub repository:
git init -b main
git add .
git commit -m "Initial personal website"
git remote add origin https://github.com/scalonico/scalonico.github.io.git
git push -u origin mainIf the repository already exists and was initialized on GitHub with a README or license, use:
git init -b main
git add .
git commit -m "Initial personal website"
git remote add origin https://github.com/scalonico/scalonico.github.io.git
git pull origin main --allow-unrelated-histories
git push -u origin main- Open the repository on GitHub.
- Go to
Settings. - Click
Pages. - Under
Build and deployment, chooseDeploy from a branch. - Select branch
main. - Select folder
/ (root). - Click
Save.
GitHub usually publishes within a minute or two. The live URL for a user site repository should be:
https://scalonico.github.io/
- Replace the selected publications with your preferred shortlist.
- Add a headshot if you want a more personal landing page.
- Add teaching, advising, or service sections if you want the site to function as a fuller academic profile.