Hey, are these expressions the same? Are there any differences to be aware of? Is either a Hugoism?
Example 1
{{ $pages := $.Site.RegularPages }}
{{ range $pages }}
{{ $page := .}}
{{ with (.Resources.Match "special*") }}
{{ . }}
{{ $page.RelPermalink }}
{{ end }}
{{ end }}
Example 2
{{ $pages := $.Site.RegularPages }}
{{ range $pages }}
{{ if ne (.Resources.Match "special*") nil }}
{{ .Resources.Match "special*" }}
{{ .RelPermalink }}
{{ end }}
{{ end }}