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.4"
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 a handful of starter files into your project: index.md, imprint.md, a
demo episode, feed templates, and _config.yml. The theme itself (layouts, includes, the Podlove
player, the subscribe button, …) isn’t copied — it’s served straight from the
jekyll-octopod-bulma gem via the theme:
setting in _config.yml, so it stays up to date without you needing to run anything. You should be
prompted to overwrite a few 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