Groovy模板引擎渲染内容

时间:2014-08-03 08:32:05

标签: spring-boot

我正在尝试将 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)。我检查了文档,但我找不到任何关于如何呈现两个不同内容的内容。模板引擎是否支持这样做?

0 个答案:

没有答案