我有3个.jade
文件,每个文件都嵌入了比以前更深的级别。所有文件都在同一个文件夹中,但是只有layout.jade
和index.jade
处于连接状态,当编译所有内容时inner.jade
不会显示。
最外面的(layout.jade):
doctype html
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
body
block content
中间层(index.jade):
extends layout
block content
div.wrap
h1= title
div.content
div.display
block innerContent
div.helper
最里面的(inner.jade):
extends index
block innerContent
table(width="600" align="center")
tr
td(width="600")
table(width="600")
最佳答案
只需在index.jade中使用include inner
而不是block innerContent
,然后从inner.jade中删除extends index
。
关于javascript - Jade模板未链接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26762353/