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