Sep 4, 2018 · 1 min read
Jekyll is a robust static-site generator used primarily for GitHub but was adapted to other platforms. Jekyll makes use of some good technology already well-equipped for static-site generation such as Markdown and Liquid.
One function that Liquid provides is a way to create subroutines. In Jekyll, these are stored in your _includes folder.
The syntax to call your subroutine is the following.
{% include function_name.html %}

