Is it possible to add images to post list appearance? #213
-
Thanks so much for your development! I successfully build our website😃 May I know if there're related features to add one image to post list? Something like this, I've tried code here to extract images to post excerpt, but it seems like doesn't work for me. Could you please advise about how to achieve this feature? Many thanks! Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I think this is worthwhile as a built-in feature. I've created an issue here: I would provide a short-term immediate fix, but to implement this is somewhat complex with respect to CSS. MAYBE you could try this, but I haven't tested it. This is meant as a quick fix and not a permanent, robust solution. In <div class="post-excerpt">
{% assign image = post.image %}
<img src="{{ image | relative_url }}" style="height: 100px; float: left;" />
... etc...
</div> Then in your post front matter, add an |
Beta Was this translation helpful? Give feedback.
I think this is worthwhile as a built-in feature. I've created an issue here:
#214
I would provide a short-term immediate fix, but to implement this is somewhat complex with respect to CSS. MAYBE you could try this, but I haven't tested it. This is meant as a quick fix and not a permanent, robust solution.
In
_includes/post-excerpt.html
:Then in your post front matter, add an
image: images/some-photo.jpg
key.