Brief

Includes are HTML files that can be pasted ("included") into a page using Liquid code.

For example, to include the head.html file from the _includes folder, you could write:

{% include head.html %}

You can also pass parameters like so (this is only for demonstration):

{% include head.html param_one="my value" param_two=20 %}

See Also