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
31
{{ define "main" }}
<div>
<!-- pulls in content/_index.md -->
<h1>Welcome!</h1>
{{.Content}}
</div>
<!-- pulls in content/posts/*.md -->
<ul id="list-posts">
{{ with .Site.GetPage "/posts" }}
{{ 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></h1>
<div class="post">
<p>{{.Summary}}</p>
{{ if .Truncated }}
<p class="read-more"><a href="{{.Permalink}}">Read Moreā¦</a></p>
{{ end }}
</div>
</li>
{{ end }}
{{ end }}
</ul>
{{ end }}