18 lines
288 B
Groovy
18 lines
288 B
Groovy
package com.jessebrault.site
|
|
|
|
import groowt.view.component.web.BaseWebViewComponent
|
|
|
|
class StandardPage extends BaseWebViewComponent {
|
|
|
|
final String title
|
|
|
|
StandardPage(Map attr) {
|
|
this.title = attr.title
|
|
}
|
|
|
|
List getPageChildren() {
|
|
this.children
|
|
}
|
|
|
|
}
|