summaryrefslogtreecommitdiffstats
path: root/layouts/blog/list.html
blob: ddf5c64ae8a71b9dbfde643864a50207e4684bc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
<header class="blog__header">
  <a href="/">/~/</a>: blog
</header>
<article>
  <ul class="posts">
    {{ $pages := .Pages }}
    {{ range $pages }}
    <li class="post">
      <a class="post__link" href="{{ .RelPermalink }}">
        /{{ .Date.Format "2006.01.02" }}/: {{ .Title }}
      </a>
    </li>
    {{ end }}
  </ul>
</article>
{{ end }}