Installation
First, install Bundler and Jekyll, create a new application and cd into it:
$ gem install bundler jekyll
$ jekyll new name-of-my-podcast
$ cd name-of-my-podcastCreate a file Gemfile or modify it, so that it contains:
source "https://rubygems.org"
gem "jekyll", "~> 4.0"
gem "jekyll-octopod"This way, we tell Jekyll that we want to use Jekyll-Octopod. Now we install the Jekyll-Octopod and its dependencies and run the setup script via:
$ bundle install
$ octopod setupThe setup script copies all assets (for example the theme and templates) into
your project. You should be prompted to overwrite a view files that are
generated by Jekyll. If you answer the first question with capital Y, you
won’t be asked again and all files are copied in batch.
Remove the file index.markdown, we are not going to use it:
$ rm index.markdownFinally, generate the site and test drive it:
$ octopod serveContinue with Demo