Back to Hugo

end

docs/content/en/functions/go-template/end.md

0.161.1866 B
Original Source

Use with the if statement:

go-html-template
{{ $var := "foo" }}
{{ if $var }}
  {{ $var }} → foo
{{ end }}

Use with the with statement:

go-html-template
{{ $var := "foo" }}
{{ with $var }}
  {{ . }} → foo
{{ end }}

Use with the range statement:

go-html-template
{{ $var := slice 1 2 3 }}
{{ range $var }}
  {{ . }} → 1 2 3 
{{ end }}

Use with the block statement:

go-html-template
{{ block "main" . }}{{ end }}

Use with the define statement:

go-html-template
{{ define "main" }}
  {{ print "this is the main section" }}
{{ end }}

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