mirror of
https://github.com/kemko/liquid.git
synced 2026-01-06 18:25:41 +03:00
369 B
369 B
title, type
| title | type |
|---|---|
| Filters | index |
Filters change the output of a Liquid object. You can append one or more filters to an object by separating the filter and its parameters by a pipe symbol |.
{% assign filter_pages = site.pages | where: 'type', 'filter' %}
{% for item in filter_pages %}
[{{ item.title }}]({{ item.url }})
{{ item.content }} {% endfor %}