summaryrefslogtreecommitdiffstats
path: root/layouts/list.html
blob: 8c2a19fecae2728e00729b7ee34f564898994b4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
  <h1 class="title">{{ .Title }}</h1>
  <table>
    <thead>
      <tr>
        <th>Date</th>
        <th>Title</th>
      </tr>
    </thead>
    <tbody>
      {{ range .Pages }}
        <tr>
          <td>{{ partial "date.html" .Date -}}</td>
          <td><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></td>
        </tr>
      {{ end }}
    </tbody>
  </table>
{{ end }}