Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'

```
git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
```

Closes #11925
This commit is contained in:
Bjørn Erik Pedersen
2024-01-27 10:48:33 +01:00
1158 changed files with 64103 additions and 0 deletions

View File

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