Hi,
I’ve added a new term to the front-matter, called archives:
+++
archives = "2014-May"
+++
And I can access the list pages of archives using:
{{ range $name, $pages := .Site.Taxonomies.archives }}
<li>
<a href="/archives/{{ $name | urlize }}" title="{{ $name | title }}">{{ $name | title }}</a></li>
{{ end }}
But where should I create the archives list page? Just like tag.html and category.html in layouts/indexes folder