jekyll/docs/_docs/liquid.md

723 B

title permalink redirect_from
Liquid /docs/liquid/ /docs/templates/

Jekyll uses the Liquid templating language to process templates.

Generally in Liquid you output content using two curly braces e.g. {% raw %}{{ variable }}{% endraw %} and perform logic statements by surrounding them in a curly brace percentage sign e.g. {% raw %}{% if statement %}{% endraw %}. To learn more about Liquid, check out the official Liquid Documentation.

Jekyll provides a number of useful Liquid additions to help you build your site:

  • [Filters]({{ '/docs/liquid/filters/' | relative_url }})
  • [Tags]({{ '/docs/liquid/tags/' | relative_url }})