A PHP Error was encountered

Severity: 8192

Message: Return type of CollectionDrop::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice

Filename: libraries/Liquid.php

Line Number: 91

A PHP Error was encountered

Severity: 8192

Message: Return type of CollectionDrop::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice

Filename: libraries/Liquid.php

Line Number: 80

Liquid Test

Liquid

Liquid code can be categorized into objects, tags, and filters.

Objects

Objects and variable names are denoted by double curly braces: {{ and }}.

For example, {{ page.title }} displays the name of a current CMS page.
For example, Liquid Test displays the name of a current CMS page.

Tags

Tags create the logic and control flow for templates. They are denoted by curly braces and percent signs: {% and %}.

For example, anything you put between {% comment %} and {% endcomment %} tags is turned into an invisible HTML comment.
For example, anything you put between tags is turned into an invisible HTML comment.

Filters

Filters change the output of a Liquid object. They are used within an output and are separated by a |.

Multiple filters can be used on one output: {{ "sherry!" | capitalize | prepend: "Hello " }}
Multiple filters can be used on one output: Hello Sherry!

Liquid Reference

For more information, see Liquid documentation