/**
  * A Placehold.it helper
  *
  * @link http://placehold.it/
  * @param string $size
  * @param string $set
  * @param boolean $lazyload
  * @return string
  */
 function PlaceholdIt($size = '300x200', $set = null, $lazyload = true)
 {
     $html = '<img data-sizes="auto" src="http://placehold.it/' . $size . '"';
     if ($set) {
         $parts = explode(',', $set);
         $srcset = array();
         foreach ($parts as $part) {
             $dim = LazySizesImageExtension::parseDimensions($part);
             $srcset[] = 'http://placehold.it/' . $part . ' ' . $dim[0] . 'w';
         }
         $html .= ' data-srcset="' . implode(',', $srcset) . '"';
     }
     if ($lazyload) {
         $html .= ' class="lazyload"';
     }
     $html .= '/>';
     return $html;
 }