我正在尝试将 layout.tpl 的正文部分中的一些内容分开。例如,我的 index.tpl 中有旋转木马滑块,但没有必要将其包含在 login.tpl 中。此外,我还需要添加其他页面特定内容。因此, layout.tpl 和 index.tpl 如下所示:
layout.tpl
body {
headerContents()
div(class:'container') {
div(class:'row') {
div(class:'col-lg-12') {
content()
}
}
}
}
在index.tpl
layout 'layouts/layout.tpl',
title:'Home',
headerContents: contents {
h1('Test Header')
}
content: contents {
h1('Test Content')
}
但无法呈现h1('Test Content)
。我检查了文档,但我找不到任何关于如何呈现两个不同内容的内容。模板引擎是否支持这样做?