I have a simple text blogger template I mean my template shows just the title without the image.
It shows on The home page just the titles of the posts as Urls for Those posts, but I need to show the first image of any post with its title on the Home page.
how can I make the first image of posts appear with the titles of the posts on the home page, not just a post title as Text Link?
<b:if cond='data:blog.url == data:blog.homepageUrl'><data:post.title/></b:if>
<b:with value='data:post.featuredImage.isResizable ? resizeImage(data:post.featuredImage, 240, "1:2") : data:post.thumbnail' var='image'>
<img class='full' expr:alt='data:post.title' expr:src='data:image'/>
</b:with>