What is Jekyll?
Jekyll is a static site generator that used liquid template language to convert markdown and html pages to static sites that are ready to be served. Github has build in support for Jekyll and so it can be really useful to generate and deploy static websites on GitHub as git pages.
One more clarification that I want to make here is that static pages do include any front end technology like JavaScript, react, etc. Only thing is it does not interact with the user and do any dynamic thing which requires sending or receiving data once page is rendered.
Jekyll also offers powerful support for code snippets:
def print_hi(name)
puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.
Liquid template for loop
1
2
3
To find more
Check out the Jekyll docs for more info on how to get the most out of Jekyll. File all bugs/feature requests at Jekyll’s GitHub repo. If you have questions, you can ask them on Jekyll’s dedicated Help repository.