Basics

Liquid uses a combination of objects, tags, and filters inside template files to display dynamic content.

Objects

Objects contain the content that Liquid displays on a page. Objects and variables are displayed when enclosed in double curly braces: {{ and }}.

Input

{{ someVal }}

Output

Introduction

In this case, Liquid is rendering the content of the someVal property

Last updated