diff options
author | Francesco <tomaselli.fr@gmail.com> | 2024-04-30 22:12:00 +0200 |
---|---|---|
committer | Francesco <tomaselli.fr@gmail.com> | 2024-04-30 22:17:59 +0200 |
commit | 3b5b22e38dab795fc11e367c30636a3dcd4972fb (patch) | |
tree | a2ecdf353814c1b88bf85c2b1cc4da3e2e87f6a1 /layouts/partials/post-entry.html | |
parent | 2adacb681f71234a8bb15d731654a8e449c9dfb4 (diff) |
Added list summaries configuration, tweaked social icons margin on mobile
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 |