I have a blogger site in which I use a custom theme.
I want to give the images which appear in my site homepage an alt and title attribute which I have originally given in the blog post but the theme sets the value of the image alt tag to the post title. For example in my blogpost I have the following image tag:
<img src="img.jpg" alt="img-alt" title="img-title">
but in the theme data the post image shown in the homepage for the post has these codes:
<img expr:src='data:post.featuredImage' expr:alt='data:post.title'>
I have tried to change it to:
expr:alt='data.post.featuredImage.alt'
but it gives no results so how can I access post specific data of tag attributes in blogger theme?