To view this site, go to wolftype.github.io/200c
This uses github's built-in support for jekyll, a static blog generator. To make one of your own such blogs you can follow the instructions here. Short hand is to:
-
Make a new repo on github.com and clone it.
git clone https://my-user-name/myrepo.git cd myrepo -
Make a branch called
gh-pagesgit checkout -b gh-pages -
Install ruby and bundler
sudo gem install bundler -
Make a Gemfile and add some stuff to it, namely:
source 'https://rubygems.org' gem 'github-pages', group: :jekyll_plugins -
Install the github jekyll plugins
bundle install -
Create new local jekyll site
bundle exec jekyll new . --force -
Add line to `_config.yml' that reads
baseurl: "/myrepo" -
Write posts to
_postsfolder, prepend href links with{{site.baseurl}}/ -
To preview your blog locally on your computer at
localhost:4000/myrepo:bundle exec jekyll serve -
Add, Commit, and Push changes
You can now view your static blog at my-user-name.github.io/myrepo. To add posts, add markdown (or html or optionally other with the right plug-in) files to the
_posts folder with the name YEAR-MONTH-DAY-postname.md
Note you can also specify a folder in your master branch which github will use to publish to yourname.github.io/yourrepo. See this link for details.
For more info, see also jekyll's github documentation