Implement Content Summaries / Split on index page

This commit is contained in:
digitalcraftsman 2017-10-01 11:23:48 +02:00 committed by GitHub
commit 5814b3e80c
1 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,12 @@
<a href="{{ .Permalink }}">{{ .Title }}</a>
</h1>
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
{{ .Content }}
{{ .Summary }}
{{ if .Truncated }}
<div class="read-more-link">
<a href="{{ .RelPermalink }}">Read More…</a>
</div>
{{ end }}
</div>
{{- end }}
</div>