b469743f16
Posts in the index page will be automatically summarized to its first 70 words, or until a user-defined <!--more--> divider. When summarized, the "Read More" button also appears with a RelPermalink to the full post. https://gohugo.io/content-management/summaries/
18 lines
No EOL
415 B
HTML
18 lines
No EOL
415 B
HTML
{{ define "main" -}}
|
|
<div class="posts">
|
|
{{ range .Data.Pages -}}
|
|
<div class="post">
|
|
<h1 class="post-title">
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
</h1>
|
|
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
|
|
{{ .Summary }}
|
|
{{ if .Truncated }}
|
|
<div class="read-more-link">
|
|
<a href="{{ .RelPermalink }}">Read More…</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
{{- end }}
|
|
</div>
|
|
{{- end }} |