I don't see any examples in the docs on how to use a post's image on the index view of Ghost. For example, you can see this theme doing it: http://studio-lite-theme.ghostify.io/
Any ideas?
EDIT: If anyone comes across this, I found this post that helped: https://ghost.org/forum/themes/1401-tip-how-to-show-the-pic-of-your-post-in-index-hbs/
As @user3088077 mentioned in his edit, I could make the image appear in the index page by replacing in the index.hbs
from
{{ excerpt }}
to{{content words="0"}}
.What happens is that
excerpt
does not include images, whilecontent
does.