Skip to content
Snippets Groups Projects
Commit e08c3b01 authored by Erik Strand's avatar Erik Strand
Browse files

Order post excerpts on homepage

parent ebe90c69
Branches
Tags
No related merge requests found
{{ define "main" -}}
<div class="posts">
{{ range .Data.Pages.ByDate -}}
<article class="post">
<h1 class="post-title">
<a href="{{ .Permalink }}">{{ .Title }}</a>
</h1>
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}" class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
{{ .Summary }}
{{ if .Truncated }}
<div class="read-more-link">
<a href="{{ .RelPermalink }}">Read More…</a>
</div>
{{ end }}
</article>
{{- end }}
</div>
{{- end }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment