Liquid code can be categorized into objects, tags, and filters.
Objects and variable names are denoted by double curly braces: {{ and }}.
{{ page.title }} displays the name of a current CMS page.
Tags create the logic and control flow for templates.
They are denoted by curly braces and percent signs: {% and %}.
{% comment %} and {% endcomment %}
tags is turned into an invisible HTML comment.
Filters change the output of a Liquid object. They are used within an output and are separated by a |.
{{ "sherry!" | capitalize | prepend: "Hello " }} For more information, see Liquid documentation
Follow Us
Follow Us online, join our conversations, engage with our teams around the world!