hugo/content/en/functions/go-template/end.md
Bjørn Erik Pedersen 9b0050e9aa Squashed 'docs/' content from commit 5c085a37b
git-subtree-dir: docs
git-subtree-split: 5c085a37b297bf12f59efeaae591418ec025c10d
2024-01-27 10:48:33 +01:00

1.2 KiB

title description categories keywords action
end Terminates if, with, range, block, and define statements.
aliases related returnType signatures
functions/go-template/block
functions/go-template/define
functions/go-template/if
functions/go-template/range
functions/go-template/with
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 "functions/go-template/_common/text-template.md" %}}