1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{{ define "main" }}
<article>
<!-- pulls in content/<collection>/_index.md -->
{{.Content}}
</article>
<ul id="list-posts">
<!-- pulls in content/<collection>/*.md -->
{{ range .Pages }}
<li>
<!-- see https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference -->
<h1><a href="{{.Permalink}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a></h2>
<div class="post">
<p>{{.Summary}}</p>
{{ if .Truncated }}
<div>
<i><a href="{{.Permalink}}">Read Moreā¦</a></i>
</div>
{{ end }}
</div>
</li>
{{ end }}
</ul>
{{ end }}