Jekyll template to host multiple reveal.js slide decks on GitHub Pages
Based upon: jekyll-reveal
- Install ruby with package manager
- Install the bundler gem
gem install bundler
- Clone with recursive switch:
git clone --recursive https://github.com/luytsm/SlideDeckCollections
- Navigate into directory and install the necessary gems with bundler
cd SlideDeckCollections
bundle install
- Add slides in
_slides
folder. Only add reveal.js<section>
- To run locally start jekyll with following command
bundle exec jekyll serve --baseurl ''
- To publish to github
- Create new repo on github
- Change baseurl in
_config.yml
- push cloned repo to github
git remote add <remote_name> <link_to_new_github_repo>
git push -u <remote_name>