这是文件layout.pug
html(lang=config.language)
head
meta(charset='UTF-8')
meta(name='viewport', content='width=device-width, initial-scale=1.0')
meta(http-equiv='X-UA-Compatible', content='ie=edge')
link(rel='stylesheet', href='stylesheets/style.css')
link(rel='icon', href= theme.favicon)
title= config.title
body
include _partial/header.pug
main#main.container
block content
include _partial/footer.pug
这是文件index.pug
extends ./layout.pug
block content
h1 Hello
文件布局不阻止内容?请帮助我