1
0
Fork 0
hugo/docs/content/en/functions/go-template/end.md

1.0 KiB

title description categories keywords params
end Terminates if, with, range, block, and define statements.
functions_and_methods
aliases returnType signatures
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 }}

{{% include "/_common/functions/go-template/text-template.md" %}}