hugo/docs/content/en/functions/go-template/if.md
Bjørn Erik Pedersen 5fd1e74903
Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'
```
git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
```

Closes #11925
2024-01-27 10:48:57 +01:00

1 KiB

title description categories keywords action
if Executes the block if the expression is truthy.
aliases related returnType signatures
functions/go-template/with
functions/go-template/else
functions/go-template/end
functions/collections/IsSet
if EXPR

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

{{ $var := "foo" }}
{{ if $var }}
  {{ $var }} → foo
{{ end }}

Use with the else statement:

{{ $var := "foo" }}
{{ if $var }}
  {{ $var }} → foo
{{ else }}
  {{ print "var is falsy" }}
{{ end }}

Use else if to check multiple conditions.

{{ $var := 12 }}
{{ if eq $var 6 }}
  {{ print "var is 6" }}
{{ else if eq $var 7 }}
  {{ print "var is 7" }}
{{ else if eq $var 42 }}
  {{ print "var is 42" }}
{{ else }}
  {{ print "var is something else" }}
{{ end }}

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