Jekyll

Posted in Notes on 1 February 2019

This site is now running on Github Pages using Jekyll.

Where WordPress was a content management system Jekyll is a static site generator. It reads content in the form of .md (markdown) files and templates in the form of .html files and churns out a complete static website.

I’m still getting the hang of it.

Development

While working locally test changes using

bundle exec jekyll serve

The site can be viewed on http://127.0.0.1:4000/

Production

To push to the live Github Pages site

$ bundle exec jekyll build

$ git add -A

$ git commit -m "Message"

$ git push

This is a test

This is a test

This is a test

This is a test

This is a test

This is a test

This is a test

Related Notes Posts

May 2024

Email and newsletter deliverability best practice

Email deliverability refers to the ability of an email to successfully reach the recipient's inbox, rather than being marked as spam or bouncing back. High... Continue reading

February 2024

Animated SVGs (Scalable Vector Graphics)

Animated SVGs, Scalable Vector Graphics, are increasingly popular choices for adding dynamic elements to websites. Their scalability, lightweight nature, and flexibility make them attractive options... Continue reading

December 2023

Using Scalable Vector Graphics (SVGs)

Scalable Vector Graphics (SVGs) have revolutionised website design, offering unparalleled flexibility, scalability, and interactivity. As versatile graphic elements, SVGs can enhance the visual appeal and... Continue reading

More Notes Posts