HTMLテンプレートファイルを構築してHTMLを完成させるのに役立つ構築ツールを見つけています。このような:
header.tmp
<html>
<head><title>Hello world</title></head>
<body>
フッター.tmp
<script></script>
</body>
</html>
index.tmp
{{header.tmp}}
<div>Hello world!</div>
{{footer.tmp}}
otherpage.tmp
{{header.tmp}}
<div>This is another page</div>
{{footer.tmp}}
次に、コマンドを使用してテンプレートを作成します。たとえば、次のようになります。
> htmltemplatebuilder ./
Building... index.html
Building... otherpage.html
次に、ヘッダー、ボディ、フッターを含むindex.htmlとotherpage.htmlを取得します。あなたはアイデアを得ました。
そのようなツールがあると思いますが、見つけることができません。
助けてください、どうもありがとう!