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
- Host: GitHub
- URL: https://github.com/thisislawatts/frctl-liquid
- Owner: thisislawatts
- License: mit
- Created: 2017-07-12T16:19:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-09T12:51:44.000Z (over 8 years ago)
- Last Synced: 2025-03-27T18:52:24.028Z (over 1 year ago)
- Topics: fractal, liquid
- Language: JavaScript
- Homepage:
- Size: 49.8 KB
- Stars: 3
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`);
```