blob: 3b6462134e766e4b12ca4fc406e6ee0553504857 [file] [log] [blame]
## This is an example velocity template
#set( $this = "Velocity")
$this is great!
#foreach( $name in $list )
$name is great!
#end
#set( $condition = true)
#if ($condition)
The condition is true!
#else
The condition is false!
#end