Skip to content

Instantly share code, notes, and snippets.

@drewrwilson
Last active August 5, 2016 16:30
Show Gist options
  • Save drewrwilson/7e3299d4a7dee20f2ca637d17a308010 to your computer and use it in GitHub Desktop.
Save drewrwilson/7e3299d4a7dee20f2ca637d17a308010 to your computer and use it in GitHub Desktop.
Boilerplate webpage hosted on gh-pages - A step-by-step guide on making a simple starting point for a webpage hosted for free on github pages
//create a new repo
//git clone repo-url
git checkout -B gh-pages //make a gh-pages branch
git branch -D master //delete master branch
git push origin gh-pages //make a remote branch on github for gh-pages
//on github project make gh-pages the default branch
//on github delete master branch
//generate a landing page with all the stuff that I want. (I'll come back to this later)
//brainstorm of what I always use:
// * bootstrap
// * fontawesome
// * some google fonts
// * jekyll structure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment