This will correctly hash the image:
<img src='/images/logo.png'/>
If I add a variable in the src, this doesn’t work:
<img src='#{cdn}/images/logo.png'/>
I know I could use asset_host with image_tag helper, but I also want to lazy load images, and I didn’t know how to use data-src attributes with that helper. Solution to either problem would be helpful. Thanks!