I plan on building a simple static site using Bootstrap, which, to my knowledge, does not have built-in support for retina images like Foundation does. I'm curious, what's stopping me from just making all the imagery for the site double the intended size (e.g. 600x300) and then shrinking it when placing it in the code?
<img src="myImage.png" width="300" height="150">
The only problem I can think of is for images that are quite large in file size. In that case, I may need to find a good retina JS lib that works well with Bootstrap. And continuing on the theme of laziness, would hopefully work well with bower and grunt as far as injecting itself into the code.