grunt-bake
Version:
Bake external includes into files to create static pages with no server-side compilation time
19 lines (17 loc) • 350 B
HTML
<html>
<head></head>
<body>
<ul>
<!--(bake includes/li.html _foreach="value:[one, two, three]")-->
</ul>
<ul>
<!--(bake includes/li.html _foreach="value:items")-->
</ul>
<ul>
<!--(bake-start _foreach="object as key => value")-->
<li>{{ key }} - {{ value }}</li>
<!--(bake-end)-->
</ul>
</body>
</html>