Some information on creating content:
To create a local draft, create a new file inside the _drafts/
folder, with no date on the title. To preview, run local server:
# first time only
# Currently working on Ruby version 3.2 only (March 2024)
$ bundle install
$ bundle exec jekyll server -lo --draft
NOTE: If bundle
is not working (perhaps complaining about a missing old version of bundler
), removing the Gemfile.lock file might help.
To publish the post, move it to the _posts/
folder, and add the publish date to the title, like so: YYYY-MM-DD-title.md
. When the repository is pushed to GitHub, the post will be published if the pipeline passes succesfully.
To create a new tag, create a folder in tag/
with the new name. In this folder add an index.html
file and just add this header:
---
layout: tag
tag: yourNewTag
---
The tag will be available instantly.