Rowing Blazers añade otra colaboración exclusiva a su lista de relojes, esta vez junto a Zodiac sobre el modelo Super Sea Wolf World Time GMT.
El reloj está inspirado en la película Trading Places, conocida en nuestro país como Entre Pillos Anda el Juego, una comedia navideña de 1983 dirigida por John Landis y protagonizada por Eddie Murphy y Dan Aykroyd. La colaboración ese basa en el GMT ficticio que Louis Winthorpe III, interpretado por Dan Aykroyd, empeña en el film.
El reloj hecho a mano en Suiza cuenta con una caja de 40mm de 13,6mm de grosor y un ancho entre asas de 20mm. Monta un movimiento automático STP 7-20 de fabricación suiza, bisel giratorio de hora mundial con 27 posiciones, manecillas y marcadores Super LumiNova. Se acompaña de 2 correas, una de acero inoxidable y otra de estilo NATO, además de ser resistente al agua hasta 20 atmósferas.
Ya disponible en la web de Rowing Blazers.
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;
?>