Introduction to GitHub Pages

GitHub is a cloud Git repository hosting service, with benefits! It provides a handy web interface for managing, editing, and collaborating on Git repositories. Originally designed to manage large open-source software projects, its use has expanded to many other types of organizations and individuals, with over 30 million users. Public repositories are free–private repositories are available on a subscription pricing model.

github octocat

One amazingly useful GitHub feature is GitHub Pages. It provides free static web hosting from any repository with a simple click of a button. GH-Pages is intended to host relatively simple sites for your GitHub portfolio, project, or documentation.

There are soft limits and guidelines for gh-pages usage: sites should be < 1GB, use < 100GB bandwidth per month, and make < 10 builds per hour. If your site exceeds these quotas, GitHub will send you a notice asking you to modify the repository. All content must follow the community guidelines, e.g. no violence, obscene sex, or illegal stuff.

Because using hosting through GH-Pages is free and builds valuable transferable skills, this is a great option for teaching and learning. Users have the opportunity to become creators and participants in global digital culture, developing critical digital literacy about the fabric of the web.

Many organizations are using GitHub to collaboratively create and publish public websites. For example:

Note: gh-pages features and setup have changed over time, so tutorials and documentation more than six months old are probably inaccurate.

Static Web

Unlike WordPress or Drupal, gh-pages is not a content management system or dynamic web application. There is no database, server side language / processing, or admin interface. This is known as a static web host. HTML, CSS, and JS stored in the repository are served to the user without dynamic changes.

In the olden days static web was the norm, but database driven dynamic web sites have dominated the last decade. Dynamic web applications enable features such as live comments, user authentication, and personalized streams. However, this functionality requires complex server-side infrastructure and processing.

view-source: one fascinating aspect of the web is that everyone must share code to participate. Right click on any web page and select “View page source” to see the code that is being rendered by the browser. Right click on any element in the page and select “Inspect” or “Inspect Element” to open your browser’s built in developer tools. This is a great way to learn about HTML and to understand how others created the sites you use.

Despite their limitations static sites are experiencing a new boom, because they offer some significant advantages:

To make development easier, hundreds of static site generators have sprung onto the scene (see lists at StaticGen and Static Site Generators). Static generators bundle together a stack of web development tools which are used to transform a directory of source code into a deployable web site.

Jekyll is one of the most popular and actively developed, in part because of its integration with gh-pages. More on that later…

Static Site Generators typically feature: command line interface; builtin development server; simplified markup based content; web templating language; CSS preprocessor; file-based data options; plugin extensibility.