mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
1.2 KiB
1.2 KiB
title | description | categories | keywords | action | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
end | Terminates if, with, range, block, and define statements. |
|
Use with the if
statement:
{{ $var := "foo" }}
{{ if $var }}
{{ $var }} → foo
{{ end }}
Use with the with
statement:
{{ $var := "foo" }}
{{ with $var }}
{{ . }} → foo
{{ end }}
Use with the range
statement:
{{ $var := slice 1 2 3 }}
{{ range $var }}
{{ . }} → 1 2 3
{{ end }}
Use with the block
statement:
{{ block "main" . }}{{ end }}
Use with the define
statement:
{{ define "main" }}
{{ print "this is the main section" }}
{{ end }}
{{% include "functions/go-template/_common/text-template.md" %}}