Javascript HTML模板开发人员的构建工具。任何

Javascript HTML模板开发人员的构建工具。任何,javascript,html,css,templates,build-tools,Javascript,Html,Css,Templates,Build Tools,我正在寻找一个构建工具,帮助我构建html模板文件来完成html。像这样: 标题。tmp <html> <head><title>Hello world</title></head> <body> <script></script> </body> </html> {{header.tmp}} <div>Hello world!</div> {{fo

我正在寻找一个构建工具,帮助我构建html模板文件来完成html。像这样:

标题。tmp

<html>
<head><title>Hello world</title></head>
<body>
<script></script>
</body>
</html>
{{header.tmp}}
<div>Hello world!</div>
{{footer.tmp}}
{{header.tmp}}
<div>This is another page</div>
{{footer.tmp}}
然后我得到带有页眉、正文和页脚的index.htmlotherpage.html。你有主意了

我相信有这样的工具,但我就是找不到


请帮忙,非常感谢

你在说这个吗@EthanWelborn抱歉不,handlebarsjs在运行时渲染模板。我需要一个工具来输出带有渲染模板的html文件。你知道吗?不幸的是,我找不到真正适合你的东西。编写一个可能不会太难,特别是如果它背后没有后端逻辑,只是在其他html中嵌入html。
> htmltemplatebuilder ./
    Building... index.html
    Building... otherpage.html