我正在寻找一个构建工具来帮助我构建 html 模板文件以完成 html。像这样:
头文件.tmp
<html>
<head><title>Hello world</title></head>
<body>
页脚.tmp
<script></script>
</body>
</html>
索引.tmp
{{header.tmp}}
<div>Hello world!</div>
{{footer.tmp}}
其他页面.tmp
{{header.tmp}}
<div>This is another page</div>
{{footer.tmp}}
然后我使用命令来构建模板,例如:
> htmltemplatebuilder ./
Building... index.html
Building... otherpage.html
然后我得到带有页眉、正文和页脚的index.html和otherpage.html 。你明白了。
我相信有这样的工具,但我就是找不到。
请帮忙,非常感谢!