Top "Liquid" questions

Liquid is an open-source template language created by Shopify and written in Ruby.

How does Jekyll date formatting work?

I'm using Jekyll to generate a simple site. I want the date field to display in the format 12 September 2011. I've …

liquid jekyll
How to concatenate / append a string to another one in Jekyll / Liquid?

To be clear, assuming: {% assign my_var = "123" %} {% assign another_var = "456" %} I would like to append string to my_var to …

jekyll liquid
Convert string to integer in Shopify Liquid?

I just read this related answer: How can I convert a number to a string? - Shopify Design — Ecommerce University …

type-conversion shopify liquid
Does Liquid have a "does not contain" or "not in array" operator?

When calling items from and array in a Liquid template, how do you call does not contain or not in …

jekyll liquid
Jekyll display posts by category

scratching my head over this - help much appreciated. I want to display a list of all my Jekyll posts, …

jekyll liquid
How do I retrieve a specific product in Shopify Liquid?

I have a list of product handles, and I want to fetch the product based on this handle. It seems …

product handle shopify liquid
How to escape liquid template tags?

This sounds very easy, however I couldn't find it anywhere in the docs. How can I write {% this %} in a …

templates liquid
Passing parameters to inclusion in Liquid templates

On my Jekyll-powered website I have an inclusion that does something function-like, but I can't figure out how to pass …

jekyll liquid
Sorted navigation menu with Jekyll and Liquid

I'm constructing a static site (no blog) with Jekyll/Liquid. I want it to have an auto-generated navigation menu that …

jekyll liquid
How to use multiple arguments in an if statement with Liquid

I want to use an if statement in Liquid with multiple conditionals. Something like: {% if (include.featured == "true" and product.…

if-statement jekyll liquid