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