How do the static pages of getbootstrap.com generated

353 views Asked by At

I try to write one static pages and upload them into github.

I noticed bootstrap also is in github.

my question is: are there any tools to help to generate static pages? Can you share me the way for bootstrap?

Thanks,

1

There are 1 answers

1
Joel Glovier On BEST ANSWER

Getbootstrap.com is a GitHub Pages site, which is powered by Jekyll.

Every repository on GitHub is eligible for a GitHub Pages site (defaults to http://username.github.com/projectname, but can use custom URLs with a CNAME record in the repository root). The static pages for your GH Pages site must live in a branch called gh-pages, which is an orphan branch so it can live parallel to the actual project's code.

For more on setting up a GitHub Pages site, see the official docs.