aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/partials/post.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/post.html')
-rw-r--r--layouts/partials/post.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/layouts/partials/post.html b/layouts/partials/post.html
index 19352e6..53aa735 100644
--- a/layouts/partials/post.html
+++ b/layouts/partials/post.html
@@ -2,9 +2,8 @@
<a class="db no-underline dim" href= "{{ .RelPermalink }}">
<h3 class="f3 baskerville mt0 lh-title near-black">{{.Title }}</h3>
<div class="cf">
- {{ if isset .Params "image" }}
- {{ $image := resources.Get .Params.image }}
- {{ $image := $image.Resize (default "320x" .Params.thumbnail_size) }}
+ {{ with resources.Get (index .Params.images 0) | default (resources.Get .Params.image) }}
+ {{ $image := .Resize (default "320x" .Params.thumbnail_size) }}
<div class="fl-ns mb4 mb0-ns pr3-ns">
<img src="{{ $image.RelPermalink }}" class="db center">
</div>