diff options
Diffstat (limited to 'docs/content/en/functions/go-template/end.md')
-rw-r--r-- | docs/content/en/functions/go-template/end.md | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/docs/content/en/functions/go-template/end.md b/docs/content/en/functions/go-template/end.md deleted file mode 100644 index 07d004de5..000000000 --- a/docs/content/en/functions/go-template/end.md +++ /dev/null @@ -1,65 +0,0 @@ ---- -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 |