mirror of https://github.com/gohugoio/hugo
51 lines
903 B
Markdown
51 lines
903 B
Markdown
---
|
|
title: if
|
|
description: Executes the block if the expression is truthy.
|
|
categories: []
|
|
keywords: []
|
|
params:
|
|
functions_and_methods:
|
|
aliases: []
|
|
returnType:
|
|
signatures: [if EXPR]
|
|
---
|
|
|
|
{{% include "/_common/functions/truthy-falsy.md" %}}
|
|
|
|
```go-html-template
|
|
{{ $var := "foo" }}
|
|
{{ if $var }}
|
|
{{ $var }} → foo
|
|
{{ end }}
|
|
```
|
|
|
|
Use with the [`else`] statement:
|
|
|
|
```go-html-template
|
|
{{ $var := "foo" }}
|
|
{{ if $var }}
|
|
{{ $var }} → foo
|
|
{{ else }}
|
|
{{ print "var is falsy" }}
|
|
{{ end }}
|
|
```
|
|
|
|
Use `else if` to check multiple conditions:
|
|
|
|
```go-html-template
|
|
{{ $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 "/_common/functions/go-template/text-template.md" %}}
|
|
|
|
[`else`]: /functions/go-template/else/
|