我在同一个文件夹中有两个玉模板,就像:
|__layout.jade
|__content.jade
并且 layout.jade 是父模板, content.jade 将从它继承:所以在layout.jade
:
doctype 5
html(lang="en")
head
title= title
body
block content
在里面content.jade
extends layout
block content
h1 this is frome nested template
但是,当我运行它时,继承不起作用,它只显示父模板的内容
那么我的代码有什么问题?