summaryrefslogtreecommitdiffstats
path: root/layouts/blog/list.html
blob: 1bdcfefd45d9241cc181491941267b238c6d99cc (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">
      <b>{{ .Date.Format "2006.01.02" }}</b>/
      <a class="post__link" href="{{ .RelPermalink }}">
        {{ .Title }}
      </a>
    </li>
    {{ end }}
  </ul>
</article>
{{ end }}