An open API service indexing awesome lists of open source software.

https://github.com/thisislawatts/frctl-liquid

Adapter for using Shopify's Liquid templating engine with Fractal
https://github.com/thisislawatts/frctl-liquid

fractal liquid

Last synced: 5 months ago
JSON representation

Adapter for using Shopify's Liquid templating engine with Fractal

Awesome Lists containing this project

README

          

# Liquid Adapter

An adapter to let you use [Shopify Liquid]() templates with [Fractal](http://github.com/frctl/fractal).

Getting Started
---

`npm install frctl-liquid`

Example Configuration

```js
"use strict";

const fractal = (module.exports = require("@frctl/fractal").create());

fractal.set("project.title", "Hello World");

fractal.components.engine(require("frctl-liquid"));
fractal.components.set("ext", ".liquid");
fractal.components.set("path", `${__dirname}/components`);

fractal.docs.set("path", `${__dirname}/docs`);
```