mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 12:50:38 -07:00
27 lines
496 B
HTML
27 lines
496 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
<script src="../../dist/shopify-liquid.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<h2 id="header"></h2>
|
|
<script>
|
|
var engine = window.Liquid();
|
|
|
|
var src = '{{ name | capitalize}}';
|
|
var ctx = {
|
|
name: 'welcome to Shopify Liquid'
|
|
};
|
|
engine.parseAndRender(src, ctx)
|
|
.then(function(html) {
|
|
document.getElementById('header').innerHTML = html;
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|