读了几个小时,我很确定我了解 Jade 中的积木是如何工作的。这是我的layout.jade
文件:
!!! 5
html(lang="en")
head
title= title
link(rel= 'stylesheet', href= '/style.css')
body
h1 Placeholder Title
block content
还有我的 index.jade 文件
extends layout
block content
p Hello World
但是,当我访问时index.jade
,唯一出现的是
“占位符标题”
中的“内容”块layout.jade
永远不会被中的内容块替换index.jade