about summary refs log tree commit diff
path: root/themes/researcher/layouts/_default/list.html
blob: b061a6b3e697bcf7f474efacb0fd14f0b8bda88b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{{ define "main" }}
<div class="container">
    <h1>{{ .Title }}</h1>
    <ul>
        {{ range .Pages }}
            <li><a href="{{ .Permalink }}">{{ if not .Params.notshowthedate }} {{ .Date.Format "2006-01-02" }} | {{ end }} {{ .Title }}</a></li>
	{{ end }}
    </ul>
</div>
{{ end }}