summaryrefslogtreecommitdiff
path: root/layouts/_default/all_posts.html
blob: 51c9d657c6af1d01ca30020e09fcb3050003d781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
<article class="list taxonomy">
  <h2>
    All posts on this blog
  </h2>
  <ul>
    {{ range where site.RegularPages "Type" "!=" "special"}}
    <li>
      <a href="{{ .Page.Permalink }}">
        <time>{{ .PublishDate.Format "2006-01-02" }}</time>
        &#183;
        {{ .Page.Title }}
      </a>
    </li>
    {{ end }}
  </ul>
</article>
{{ end }}