diff options
Diffstat (limited to 'layouts/partials/post-entry.html')
-rw-r--r-- | layouts/partials/post-entry.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/layouts/partials/post-entry.html b/layouts/partials/post-entry.html index f3f2a23..1752768 100644 --- a/layouts/partials/post-entry.html +++ b/layouts/partials/post-entry.html @@ -1,4 +1,10 @@ <div class="post-line"> - <p class="post-date">{{ .Date.Format "2 Jan 2006" }} </p> - <p class="post-title"> <a href="{{ .RelPermalink }}">{{ .Title }}</a></p> + <p class="line-date">{{ .Date.Format "2 Jan 2006" }} </p> + <div> + <p class="line-title"> <a href="{{ .RelPermalink }}">{{ .Title }}</a></p> + + {{ if .Site.Params.listSummaries }} + <p class="line-summary"> {{ .Summary }} </p> + {{ end }} + </div> </div>
\ No newline at end of file |