grunt-jade是否可以包含外部文件?

时间:2013-10-15 04:42:27

标签: pug gruntjs

我正在使用grunt-contrib-jade,我想从几个jade文件中生成一个html。例如,我希望有footer.jade文件输出html页脚,这样我就可以将它重用于多个页面。我希望能够将其插入到html文件的特定部分。这可能吗?

1 个答案:

答案 0 :(得分:1)

解决了它。看起来我可以使用'include'命令,但它以某种方式从当前文档中删除。

index.jade

doctype 5
html(lang="en")
  head
    include head
    title Test
    link(rel="stylesheet", href="style.css")
  body
    p This is a test.

head.jade

meta(charset="utf-8")
meta(http-equiv="X-UA-Compatible", content="IE=edge,chrome=1")
meta(name="viewport", content="width=device-width, initial-scale=1.0")

这将包括head.jade中的index.jade