templates for self-hosting game jams (or any other kind of jam tbh)
1# About 2 3### Where this project comes from 4 5The theme scaffold was generated with this command and Jekyll 4: 6 7```sh 8$ jekyll new-theme NAME 9``` 10 11Note that is similar to the `jekyll new` command. 12 13### Package a theme 14 15The part that allows this project gem to be packaged as an installable gem-based theme is this file: 16 17- [jekyll-theme-quickstart.gemspec](/jekyll-theme-quickstart.gemspec) 18 19The other parts like the config and Gemfile or the layout and includes directories are standard for a Jekyll project. The markdown pages in the root are included for a local demo and are not packaged in the theme. 20 21Resources: 22 23- [Creating a gem-based theme](https://jekyllrb.com/docs/themes/#creating-a-gem-based-theme) in Jekyll docs. 24- [Publishing your theme](https://jekyllrb.com/docs/themes/#publishing-your-theme) in Jekyll docs. 25- [Adding a theme to your GitHub Pages site using Jekyll](https://help.github.com/en/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll) guide on Github's help.