0.1.5 • Published 8 years ago
modular-html v0.1.5
modular-html
Ultra light-weight modular based HTML
Install
npm install -g modular-htmlroot.html
{%header.html%}
{%body.html%}
{%footer.html%}header.html
<html>
<head>
</head>body.html
<body>
<div>
{%a.html%}
{%b.html%}
</div>
</body>footer.html
</html>a.html
<span>Hello</span>b.html
<span>World</span>Build
modular-html ./root.html ./main.htmlResult - main.html
<html>
<head>
</head>
<body>
<div>
<span>Hello</span>
<span>World</span>
</div>
</body>
</html>