wires

summary refs log tree commit diff
path: root/layouts/index.html
blob: 842231322e6413385cdea1bcb17745f7438d2aad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }} {{ .Content }} {{ with (where site.RegularPages
"Params.hidden" "ne" true) }}
<h2>Posts</h2>
<ul>
  {{ range . }}
  <li>
    <a href="{{ .Permalink }}">{{ .Title }}</a>
    <time datetime="{{ .Lastmod }}">
      {{ .Lastmod.Format "January 2, 2006" }}
    </time>
  </li>
  {{ end }}
</ul>
{{ end }} {{ end }}