---
---
{{/* after */}}
{{"https://gohugo.io/functions/after" | markdownify }}

{{ $data := slice "one" "two" "three" "four" }}
{{ range after 2 $data }}
  {{- . }}
{{ end }}

{{ after 3 (seq 1 10) }}
{{ after 6 (dict "foo" (seq 1 10) "hello" "world" "i" 42).foo }}


https://gohugo.io/functions/after


three
four


[4 5 6 7 8 9 10]
[7 8 9 10]