By Havana Insider
This is indeed a fantastic smoke. Light coffee and nut flavors highlight the tobacco richness.
By Havana Insider
This is like the old Bolivar style. A powerful and very rich robusto with so much coffee, bitter chocolate and powerful tobacco.
By Havana Insider
I am a big robusto smoker and this is a robusto that many seem to overlook, but it is consistently outstanding quality. The 50-ring-gauge thick by 4.8-inch long cigar delivers plenty of spicy and cappuccino like character. A beautiful smoke.
//GET WEATHER
// Commented out/disabled by Chevy 2016-11-22
// Occasionally api.openweathermap.org is slow and causes homepage response to exceed 60 seconds
// Requested by James to "Kill the weather service asap" on 2016-11-21
/*
if($xml=@simplexml_load_file("http://api.openweathermap.org/data/2.5/weather?q=Havana&APPID=5c6cf41f851041e851be58ff6b9afb4b&mode=xml")){
$weather= $xml->weather['value'];
if(strpos($weather,'Clear') !== false || strpos($weather,'sun') !== false || strpos($weather,'sunny') !== false){
$weather_img='sun.svg';
}
else if(strpos($weather,'rain') !== false || strpos($weather,'wet') !== false || strpos($weather,'showers') !== false){
$weather_img='rain.svg';
}else{
$weather_img='cloud.svg';
}
$degreeC = $xml->temperature['value']-273.15;
$degreeF = (($degreeC/5)*9)+35;
$temperature=round($degreeC).'°C
'.round($degreeF).'°F';
}else{
$temperature='n/a °C
n/a °F';
$weather_img='cloud.svg';
$weather='Weather Not Found';
}
*/
?>