Basically, something simple like:
<div class="container">
  <img src="something.jpg" class="image">
  <div class="well">Title</div>
</div>
If the img can be max-height of like 400px for example (I think pinterest makes them fit really well), how do you make it not horribly compress itself?
.image {
  width: 100%;
  max-height: 300px;
  height: 100%;
}