Make a results page based on the month of post [solved]

I had a look at the helpers and I can’t see a way to simply create a link on the date post meta and make a list of posts on that date, similar to tag.hbs.

I imagine it’s so simple i’m overlooking it.

Cheers.

{{#get "posts" filter="month:11"}}
  {{#foreach posts}}
    <h2>{{title}}</h2>
    <p>{{excerpt}}</p>
  {{/foreach}}
{{else}}
  <p>No posts found for November.</p>
{{/get}}