end
Terminates if, with, range, block, and define statements.
Syntax
end
Use with the if statement:
{{ $var := "foo" }}
{{ if $var }}
{{ $var }} → foo
{{ end }}Use with the with statement:
{{ $var := "foo" }}
{{ with $var }}
{{ . }} → foo
{{ end }}Use with the range statement:
{{ $var := slice 1 2 3 }}
{{ range $var }}
{{ . }} → 1 2 3
{{ end }}Use with the block statement:
{{ block "main" . }}{{ end }}Use with the define statement:
{{ define "main" }}
{{ print "this is the main section" }}
{{ end }}See Go’s text/template documentation for more information.
Last updated:
April 10, 2025
:
Merge commit '5be51ac3db225d5df501ed1fa1499c41d97dbf65' (283e97783)
Improve this page