This is a Fractal adapter for the thymeleaf-js template engine, this template engine was ported from Java to Js.
npm install thymeleafjs-adapterUse Thymeleaf templates with Fractal.
Install via NPM:
``bash`
npm i thymeleafjs-adapter
Then configure your Fractal instance:
`js
fractal.components.engine('thymeleafjs-adapter');
// register the thymeleaf engine adapter for your components
fractal.components.set('ext', '.html');
// look for files with a .thymeleaf file extension
``