我在同一個文件夾兩枚玉玉模板模板繼承,就像:如何實現的node.js
|__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
然而,
WH我運行它,繼承不起作用,它只顯示父模板的內容
所以我的代碼出了什麼問題?