Getting Started

This theme is based on HPSTR Jekyll Theme. To learn how to install and use this theme check out the Setup Guide for more information.

Check also Basic writing and formatting syntax

Ubuntu setup

Install Jekyllrequired dependencies

sudo apt-get update
sudo apt-get install ruby-full build-essential zlib1g-dev

Set up a gem installation directory for your user account

echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

Install Bundler and and GitHub compatibile Jekyll and all dependencies

gem install bundler github-pages

Navigate to this repository and install missing gems

bundle install

Test your site

bundle exec jekyll build
bundle exec jekyll serve --drafts

Browse to http://localhost:4000