用于嵌入重复 html 元素的尽可能简单的模板引擎

As simple as possible template engine for embedding repeating html elements

关于这个主题的问题很多,但我没有找到任何我喜欢的。

我决定更新我的单页作品集并将其设为多页(github 页)。为了方便起见,我想嵌入重复的 3 个文件头、页眉、页脚。可以使用什么来执行此操作以使其对性能的影响最小。

谢谢!

This article 提供了许多方法来完成您想要做的事情,但我认为最简单的方法是:

<body>
  
  <iframe src="./header.html"></iframe>
  
  Content.
  
  <iframe src="./footer.html"></iframe>
  
</body>

它建议对性能影响最小的是:

<body>
   <?php include "./header.html" ?>

   Content

   <?php include "./footer.html" ?>
</body>