I have an image that enclosed in an image tag <img src="/path/to/image.png">
but i want to use responsive image style for the image. I am using webp module to create responsive image and created image style.
<picture> <source srcset="/path/to/image.png 1x" media="all and (min-width: 376px) and (max-width: 768px)" type="image/jpeg" width="737" height="553"> <source srcset="/path/to/image.png 1x" type="image/jpeg" width="367" height="275"> <img src="/path/to/image.png" width="737" height="553" alt="t6"> </picture>
Here is how i am render image in twig file:
{{ fields.field_about_image.content }}