The Taura-lab website is built with Jekyll. Jekyll generates static HTML files from the Markdown files.
GitHub Pages supports Jekyll so that a push to a specific branch of this repository will automatically trigger an update of the website. If you want to edit/add/delete pages, you only have to edit/add/delete the Markdown files and push your changes to the main branch.
You need to install bundler:
gem install bundler
Run the following command to install the dependencies under website/
:
bundle install
Run the following command to build the site:
bundle exec jekyll build
Or you can preview the site as you are editing by running the following command and accessing http://127.0.0.1:4000/:
bundle exec jekyll serve