diff --git a/content/en/news/0.59.0-relnotes/index.md b/content/en/news/0.59.0-relnotes/index.md index 1d981f210..1a7552d09 100644 --- a/content/en/news/0.59.0-relnotes/index.md +++ b/content/en/news/0.59.0-relnotes/index.md @@ -22,6 +22,12 @@ Another useful addon is the `$pages.Next` and `$pages.Prev` methods on the core {{with .Site.RegularPages.Next . }}{{.RelPermalink}}{{end}} ``` +The above is a functionally equivalent (but slightly slower) variant of: + +``` +{{with .Next }}{{.RelPermalink}}{{end}} +``` + See [Pages Methods](https://gohugo.io/variables/pages/) for more information.