mirror of https://github.com/gohugoio/hugo
533 B
533 B
title | description | categories | keywords | params | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
break | Used with the range statement, stops the innermost iteration and bypasses all remaining iterations. |
|
This template code:
{{ $s := slice "foo" "bar" "baz" }}
{{ range $s }}
{{ if eq . "bar" }}
{{ break }}
{{ end }}
<p>{{ . }}</p>
{{ end }}
Is rendered to:
<p>foo</p>
{{% include "/_common/functions/go-template/text-template.md" %}}