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.