mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 14:10:05 +00:00
16 lines
286 B
Go
16 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
|
|
}
|