Files
liquidjs/demo/browser/index.html
2021-01-24 02:57:48 +08:00

29 lines
593 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>liquidjs for the browser</title>
<script src="node_modules/liquidjs/dist/liquid.browser.min.js"></script>
</head>
<body>
<script>
var Liquid = window.liquidjs.Liquid
var engine = new Liquid({
extname: '.html',
cache: true
});
var src = "<h2>Welcome to {{ name | capitalize}}, {% include 'date.html' %}</h2>";
var ctx = {
name: 'Liquid',
date: new Date()
};
engine.parseAndRender(src, ctx)
.then(function(html) {
document.body.innerHTML = html
});
</script>
</body>
</html>