Liquid objects contain attributes to output dynamic content on the page. For example, the page
object contains an attribute called title
that can be used to output the title
of a page
.
Liquid objects are also often referred to as Liquid variables.
To output an object’s attribute, wrap the object’s name in {{
and }}
, as shown below:
{{ page.title }} <!-- Output: “About Us” -->
Available Objects: