summaryrefslogtreecommitdiffstats
path: root/layouts/blog/list.html
blob: ed01b5fb0655f6dfc7c0533183a8d117a3b30eff (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>: NaN
</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 }}