繼承的關鍵字是extends, 那模板包含使用的是include這個關鍵字html
meta(charset='utf-8')
title layout
layout.jadespa
html
head
include head.jade
body
block descript
p from layout
block content
extends layout.jade
block content
block descript
p desc from index
include title.html
<div> <p>hahahs</p> </div>
=>code
<html> <head> <meta charset="utf-8"/> <title>layout</title> </head> <body> <p>desc from index</p> <p>desc from index</p>
<div> <p>hahahs</p> </div> </body> </html>