List of posts with offset

Hi,

I am trying to migrate my website to Hugo and I am facing few issues since I am a newbie in Hugo.
I would like to display a list of recent posts (from all the site) excluding the first one.
I use the following syntax in order to fetch the 2nd and 3rd articles form the entire site:
{{ range first 2 (after 1 (where .Data.Pages.ByDate.Reverse)) }}
It seems that it doesn’t work.
I tried to follow the advice from this article in the Forum without success.
thank you for your help and sorry for this basic question.

{{ range first 2 (after 1 (where .Data.Pages.ByDate.Reverse)) }}

should be

{{ range first 2 (after 1 (.Data.Pages.ByDate.Reverse)) }}

You don’t really need where for this But to clear things up read about it over here: https://gohugo.io/functions/where/#readout

Thanks a lot,
It works fine