Simply my technical notes made posts.
To install execute:
# Install ruby 2.4 or 2.5
sudo apt-get install ruby2.4
sudo apt-get install ruby2.5
# Install jekyll for blog generation from static files
sudo gem install jekyll -v 4.0
# Ensure all submodules to this project are properly cloned too
git submodule update --init --recursive
Preview is available during development if content was served by Jekyll:
jekyll serve
jekyll serve --drafts
Default output folder is _site/
.
New posts are added in _posts
directory, respecting the file naming convention.
Layouts define the form of a post:
post
: will useJekyll
itselfpresentation
: will usereveal.js
See existing example post for more information.
bash publish.sh
Thanks to Laurent Pellegrino for the blog template!