Background: using zurb foundation's data-interchange, running in Concrete5.
Using php inside an img src path is easy enough.
<img src="<?php echo $this->getThemePath(); ?>/images/myImage.png" \>
But when I go further, passing parameters and such to use data-interchange, things get messy. I know it probably has something to do with quotes or parentheses and such. Help with this code?
<img src="<?php echo $this->getThemePath(); ?>/images/myImage.png" data-interchange="[<?php echo $this->getThemePath(); ?>/images/myImage.png, (default)], [<?php echo $this->getThemePath(); ?>/images/myImage_@2x.png, (retina)]">