How do I hide _index.md from a listing?

I have a very simple aside.html partial which is included everywher, where I want to list my blog posts and status posts, eg

      {{ range first 4 (where .Site.Pages "Section" "blog") }}
        <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
      {{ end }}

However, it displays the _index.md as well (2. Blog in example below)

51

I am sure there is an easy way to hide the first item (something like range from index 1 on the array) but my Go powers are so weak as to be nonexistent, and I’m not getting much out of the God ocumentation site!

Use .Site.RegularPages

1 Like

That is so crafty, in both senses of the word, thank you :slightly_smiling_face: