Liquid Template Engine Support

| 1 min read

Poops now supports Liquid as an alternative template engine alongside Nunjucks. Use .liquid files and familiar Liquid syntax for your templates, layouts, and includes.

What's new?

Poops now ships with two template engines: Nunjucks (the default) and Liquid. You can choose which engine to use by setting the engine option in your markup configuration. Both engines support the same feature set — collections, pagination, search index, sitemap, custom tags, and filters.

Example configuration

{
  "markup": {
    "in": "src/liquid",
    "out": "dist",
    "engine": "liquid"
  }
}

Template syntax differences

Nunjucks and Liquid are similar but have key differences:

Same features, different syntax

All Poops features work with both engines:


Changelog Docs
💩💩💩💩
This static site was generated using Poops and serves as an example.