Building this site in Github Pages
Outdated - this site is not longer hosted on github nor is it using jekyll.
The following are instructions to build this site. Largely it is an exercise in both verifying the steps for myself and in using the site building tools to create and publish this post.
These instructions are based on building a user or organisation site, rather than a project site.
Create initial site
- Create Repository:
kemitix.github.io
- Browse to the Settings page
- Scroll down to GitHub Pages
- Tick Enforce HTTPS
Create local Jekyll project
Configure So Simple theme
Add plugins to Gemfile:
gem "github-pages", group: :jekyll_plugins
group :jekyll_plugins do
gem "jekyll-remote-theme"
gem "jekyll-sitemap"
end
Install plugin:
Enable plugins and select theme in _config.yml:
plugins:
- jekyll-remote-theme
- jekyll-sitemap
remote_theme: mmistakes/so-simple-theme
Review site locally
Open browser: http://localhost:4000/
Publish to github
- Open browser:
https://kemitix.github.io/
Refs
- http://pages.github.com/
- https://jekyllrb.com/docs/installation/