Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 603 Bytes

offset.md

File metadata and controls

41 lines (34 loc) · 603 Bytes
id blueprint modifier_types title
9433b8cd-b2e0-4fbf-85bd-85edf317efa4
modifiers
array
utility
Offset

Offsets the items returned in an array.

playlist:
  - Emancipator
  - Gong Gong
  - Possom Posse
  - Justin Bieber

Use with the pipe syntax to continue chaining in a single tag like so:

{{ playlist | offset(1) | join }}
Gong Gong, Possom Posse, Justin Bieber

Or using the parameter syntax:

{{ playlist | offset(1) }}
    <li>{{ value }}</li>
{{ /playlist }}
<li>Gong Gong</li>
<li>Possom Posse</li>
<li>Justin Bieber</li>