Desde Texas llega SUPPLY Provision Co. con la misión de ofrecernos productos significativos, duraderos y de calidad. Y de momento van a empezar con la maquinilla de afeitar.
Dentro del programa de financiación Kickstarter, su Single Edge reinventa las maquinillas de afeitar mediante un diseño vintage basándose en el método tradicional de afeitado en húmedo. Para ofrecer así a través de una navaja de calidad una mejor experiencia. Además, su sencillez de uso, como el sistema de cambio de cuchilla, hacen que junto a la posibilidad de regular la longitud del acabado, sea todo un gadget digno de ser producido.
Entre sus principales características encontramos el uso de acero de gran calidad, y la inclusión de una pequeña bolsa de transporte fabricada con loneta Martexin y envuelta con una cinta de cuero encerado.
foreach ($images as $image) {
if ($start <= $i and $i < $stop) {
$img_title = $image->post_title; // title.
$img_description = $image->post_content; // description.
$img_caption = $image->post_excerpt; // caption.
$img_url = wp_get_attachment_url($image->ID); // url of the full size image.
$preview_array = image_downsize( $image->ID, 'thumbnail' );
$img_preview = $preview_array[0]; // thumbnail or medium image to use for preview.
?>
![]()
}
$i++;
}
?>
}
}
// LAST NIGHT GALLERY=============================
// Get attached images & spits out a list of them.
function last_night_gallery($size = 'post-parrilla', $limit = '0', $offset = '0') {
global $post;
$images = get_children( array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID') );
if ($images) {
$num_of_images = count($images);
if ($offset > 0) : $start = $offset--; else : $start = 0; endif;
if ($limit > 0) : $stop = $limit+$start; else : $stop = $num_of_images; endif;
$i = 0;
?>