0

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

4

1 回答 1

1

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

索引.jade

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

头玉

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.jadeindex.jade.

于 2013-10-15T05:27:13.120 回答