mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 22:20:05 +00:00
17 lines
286 B
Go
17 lines
286 B
Go
|
package pongo2
|
||
|
|
||
|
// The root document
|
||
|
type nodeDocument struct {
|
||
|
Nodes []INode
|
||
|
}
|
||
|
|
||
|
func (doc *nodeDocument) Execute(ctx *ExecutionContext, writer TemplateWriter) *Error {
|
||
|
for _, n := range doc.Nodes {
|
||
|
err := n.Execute(ctx, writer)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
return nil
|
||
|
}
|