我如何做包含.pug文件中目录的所有文件?

时间:2017-09-28 16:38:42

标签: node.js pug

我有一个包含一些文件的目录,我希望在一个.pug文件中包含此目录的所有文件。

1 个答案:

答案 0 :(得分:1)

如果您想将Pug文件包含在另一个文件中,可以使用include

doctype html
html
  include includes/head.pug
  body
    h1 Content
    inlucde includes/body/content.pug
    h1 Footer
    inlucde includes/body/footer.pug

Read more about includes。另请查看Template Inheritance