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
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 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!