说我有这个顶级模板(_main.jade):
html
head
title test
body
block content
然后我有了这个第二级模板(_project.jade),我希望将内容添加到从最后一级获得的内容:
extends _main.jade
block content
// somehow include content from final level here.
p some extra content that gets appended to the project content.
然后是最终级别(myProject.jade):
extends _project.jade
block content
p this is the content for my project.
根据我的理解,我可以在_project.jade中添加另一个块定义'块内容'与'阻止projectContent'或者什么,但如果我能使用我的阻止关键字'内容'那就太好了。无处不在。
这可能吗?
答案 0 :(得分:0)
我不认为这是可能的。我刚刚在第二级模板中使用了不同的块名称。
extends _main.jade
block content
// include content from final level here.
block projectContent
p some extra content that gets appended to the project content.