templates for self-hosting game jams (or any other kind of jam tbh)
1# Install theme
2> How to install any theme from RubyGems
3
4_Note this is a general guide which you can keep and modify when creating a new project from this one. The theme `minima` is used here since `jekyll-theme-quickstart` is not published as so will not work. Note that on GH Pages that this approach only works with a limited set of supported themes - you have to use Remote Themes plugin to use another theme on GH Pages._
5
61. Add your `Gemfile`:
7 ```ruby
8 gem "minima"
9 ```
102. Add to your `_config.yml`:
11 ```yaml
12 theme: minima
13 ```
143. Install it:
15 ```sh
16 $ bundle install
17 ```
184. Start your server.