This repo contains the sources for the Lobid blog page
It’s automatically deployed to https://hbz.github.io/lobid-blog/ by GitHub Pages when pushing to the master branch.
To set up the Jekyll-based blog locally, see https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/
Quick setup:
sudo apt-get install build-essential zlib1g-dev ruby-dev
sudo gem install bundler
git clone https://github.com/hbz/lobid-blog.git
cd lobid-blog
bundle install --path ~/.gem
Start server locally when working on a draft:
bundle exec jekyll serve --drafts --future --watch
Render *.dot
files in images/
with:
sh render.sh <name-without-extension>
e.g. sh render.sh data
to render data.dot
as data.png
.