get_queried_object_id(); $is_woocommerce=false; if(function_exists("is_woocommerce")) { $is_woocommerce = is_woocommerce(); if($is_woocommerce){ $id = get_option('woocommerce_shop_page_id'); } } $header_style = ""; if(get_post_meta($id, "qode_header-style", true) != ""){ $header_style = get_post_meta($id, "qode_header-style", true); }else if(isset($qode_options_proya['header_style'])){ $header_style = $qode_options_proya['header_style']; } $header_color_transparency_per_page = ""; if($qode_options_proya['header_background_transparency_initial'] != "") { $header_color_transparency_per_page = $qode_options_proya['header_background_transparency_initial']; } if(get_post_meta($id, "qode_header_color_transparency_per_page", true) != ""){ $header_color_transparency_per_page = get_post_meta($id, "qode_header_color_transparency_per_page", true); } $header_color_per_page = "style='"; if(get_post_meta($id, "qode_header_color_per_page", true) != ""){ if($header_color_transparency_per_page != ""){ $header_background_color = qode_hex2rgb(get_post_meta($id, "qode_header_color_per_page", true)); $header_color_per_page .= " background-color:rgba(" . $header_background_color[0] . ", " . $header_background_color[1] . ", " . $header_background_color[2] . ", " . $header_color_transparency_per_page . ");"; }else{ $header_color_per_page .= " background-color:" . get_post_meta($id, "qode_header_color_per_page", true) . ";"; } } else if($header_color_transparency_per_page != "" && get_post_meta($id, "qode_header_color_per_page", true) == ""){ $header_background_color = $qode_options_proya['header_background_color'] ? qode_hex2rgb($qode_options_proya['header_background_color']) : qode_hex2rgb("#ffffff"); $header_color_per_page .= " background-color:rgba(" . $header_background_color[0] . ", " . $header_background_color[1] . ", " . $header_background_color[2] . ", " . $header_color_transparency_per_page . ");"; } $header_top_color_per_page = "style='"; if(get_post_meta($id, "qode_header_color_per_page", true) != ""){ if($header_color_transparency_per_page != ""){ $header_background_color = qode_hex2rgb(get_post_meta($id, "qode_header_color_per_page", true)); $header_top_color_per_page .= "background-color:rgba(" . $header_background_color[0] . ", " . $header_background_color[1] . ", " . $header_background_color[2] . ", " . $header_color_transparency_per_page . ");"; }else{ $header_top_color_per_page .= "background-color:" . get_post_meta($id, "qode_header_color_per_page", true) . ";"; } } else if($header_color_transparency_per_page != "" && get_post_meta($id, "qode_header_color_per_page", true) == ""){ $header_background_color = $qode_options_proya['header_top_background_color'] ? qode_hex2rgb($qode_options_proya['header_top_background_color']) : qode_hex2rgb("#ffffff"); $header_top_color_per_page .= "background-color:rgba(" . $header_background_color[0] . ", " . $header_background_color[1] . ", " . $header_background_color[2] . ", " . $header_color_transparency_per_page . ");"; } $header_separator = qode_hex2rgb("#eaeaea"); if(isset($qode_options_proya['header_separator_color']) && $qode_options_proya['header_separator_color'] != ""){ $header_separator = qode_hex2rgb($qode_options_proya['header_separator_color']); } $header_color_per_page .="'"; $header_top_color_per_page .="'"; //generate header classes based on qode options $header_classes = ''; if(is_active_sidebar('woocommerce_dropdown')) { $header_classes .= 'has_woocommerce_dropdown '; } if($display_header_top == "yes") { $header_classes .= ' has_top'; } if($header_top_area_scroll == "yes") { $header_classes .= ' scroll_top'; } if($centered_logo) { $header_classes .= ' centered_logo'; } if($centered_logo_animate){ $header_classes .= ' centered_logo_animate'; } if(is_active_sidebar('header_fixed_right')) { $header_classes .= ' has_header_fixed_right'; } if($qode_options_proya['header_top_area_scroll'] == 'no') { $header_classes .= ' scroll_header_top_area'; } if(get_post_meta($id, "qode_header-style", true) != ""){ $header_classes .= ' '.get_post_meta($id, "qode_header-style", true); } else if(isset($qode_options_proya['header_style'])){ $header_classes .= ' '.$qode_options_proya['header_style']; } $header_bottom_appearance = 'fixed'; if(isset($qode_options_proya['header_bottom_appearance'])){ $header_classes .= ' '.$qode_options_proya['header_bottom_appearance']; $header_bottom_appearance = $qode_options_proya['header_bottom_appearance']; } else { $header_classes .= ' fixed'; } $per_page_header_transparency = get_post_meta($id, 'qode_header_color_transparency_per_page', true); $header_transparency = ''; if($per_page_header_transparency !== '') { $header_transparency = $per_page_header_transparency; } else { $header_transparency = $qode_options_proya['header_background_transparency_initial']; } $is_header_transparent = false; $transparent_values_array = array('0.00', '0'); $sticky_headers_array = array('stick','stick menu_bottom','stick_with_left_right_menu','stick compound'); $fixed_headers_array = array('fixed','fixed fixed_minimal','fixed_hiding','fixed_top_header'); //is header transparent not set on current page? if(get_post_meta($id, "qode_header_color_transparency_per_page", true) === "" || get_post_meta($id, "qode_header_color_transparency_per_page", true) === false) { //take global value set in Qode Options $transparent_header = $qode_options_proya['header_background_transparency_initial']; } else { //take value set for current page $transparent_header = get_post_meta($id, "qode_header_color_transparency_per_page", true); } //is header completely transparent? $is_header_transparent = in_array($transparent_header, $transparent_values_array); if($is_header_transparent) { $header_classes .= ' transparent'; } //is header transparent on scrolled window? if(isset($qode_options_proya['header_bottom_appearance']) && $qode_options_proya['header_bottom_appearance'] !== 'regular' && ((!in_array($qode_options_proya['header_background_transparency_sticky'], $transparent_values_array) && in_array($qode_options_proya['header_bottom_appearance'], $sticky_headers_array)) || (!in_array($qode_options_proya['header_background_transparency_scroll'], $transparent_values_array) && in_array($qode_options_proya['header_bottom_appearance'], $fixed_headers_array)))) { $header_classes .= ' scrolled_not_transparent'; } $header_with_border = isset($qode_options_proya['header_bottom_border_color']) && $qode_options_proya['header_bottom_border_color'] != ''; if($header_with_border) { $header_classes .= ' with_border'; } //check if first level hover background color is set $has_first_lvl_bg_color = isset($qode_options_proya['menu_hover_background_color']) && $qode_options_proya['menu_hover_background_color'] !== ''; if($has_first_lvl_bg_color) { $header_classes .= ' with_hover_bg_color'; } if(isset($qode_options_proya['paspartu_header_alignment']) && $qode_options_proya['paspartu_header_alignment'] == 'yes' && isset($qode_options_proya['paspartu']) && $qode_options_proya['paspartu'] == 'yes'){ $header_classes .= ' paspartu_header_alignment'; } if(isset($qode_options_proya['paspartu_header_inside']) && $qode_options_proya['paspartu_header_inside'] == 'yes' && isset($qode_options_proya['paspartu']) && $qode_options_proya['paspartu'] == 'yes'){ $header_classes .= ' paspartu_header_inside'; } $vertical_area_background_image = ""; if(isset($qode_options_proya['vertical_area_background_image']) && $qode_options_proya['vertical_area_background_image'] != "") { $vertical_area_background_image = $qode_options_proya['vertical_area_background_image']; } if(get_post_meta($id, "qode_page_vertical_area_background_image", true) != ""){ $vertical_area_background_image = get_post_meta($id, "qode_page_vertical_area_background_image", true); } if(get_post_meta($id, "qode_header-style-on-scroll", true) != ""){ if(get_post_meta($id, "qode_header-style-on-scroll", true) == "yes") { $header_classes .= ' header_style_on_scroll'; } } else if(isset($qode_options_proya['enable_header_style_on_scroll']) && $qode_options_proya['enable_header_style_on_scroll'] == 'yes'){ $header_classes .= ' header_style_on_scroll'; } if($menu_position == 'left' && in_array($header_bottom_appearance, array('regular','fixed','stick'))){ $header_classes .= ' menu_position_left'; } if(qode_is_ajax_header_animation_enabled()){ $header_classes .= ' ajax_header_animation'; } $logo_height = 0; if(isset($qode_options_proya['logo_image'])){ if (!empty($qode_options_proya['logo_image'])) { $logo_url_obj = parse_url($qode_options_proya['logo_image']); if (file_exists($_SERVER['DOCUMENT_ROOT'].$logo_url_obj['path'])) { list($logo_width, $logo_height, $logo_type, $logo_attr) = getimagesize($_SERVER['DOCUMENT_ROOT'].$logo_url_obj['path']); } } } $enable_search_left_sidearea_right = false; if(isset($qode_options_proya['header_bottom_appearance']) && $qode_options_proya['header_bottom_appearance'] =='fixed_hiding'){ if(isset($qode_options_proya['search_left_sidearea_right']) && $qode_options_proya['search_left_sidearea_right'] =='yes'){ $enable_search_left_sidearea_right = true; } }else{ if(isset($qode_options_proya['search_left_sidearea_right_regular']) && $qode_options_proya['search_left_sidearea_right_regular'] =='yes'){ $enable_search_left_sidearea_right = true; } } $overlapping_content = false; if(isset($qode_options_proya['overlapping_content']) && $qode_options_proya['overlapping_content'] == 'yes'){ $overlapping_content = true; } ?>
Ristorante Numero Unico a Siena in centro | Ristorante Numero Unico a Siena cucina tipica senese rielaborata. In centro tra piazza del Campo e Duomo
15637
home,page-template,page-template-full_width,page-template-full_width-php,page,page-id-15637,qode-listing-1.0.1,qode-social-login-1.0,qode-news-1.0,qode-quick-links-1.0,qode-restaurant-1.0,ajax_fade,page_not_loaded,,qode-title-hidden,paspartu_enabled,paspartu_on_top_fixed,paspartu_on_bottom_fixed,qode-theme-ver-12.1.1,qode-theme-bridge,bridge

[vc_row css_animation=”” row_type=”row” use_row_as_full_screen_section=”no” type=”grid” anchor=”ristorante” angled_section=”no” text_align=”center” background_image_as_pattern=”without_pattern” padding_top=”111″][vc_column][vc_column_text]

NUMERO UNICO RESTAURANT IN SIENA

[/vc_column_text][vc_separator type=”transparent” up=”20″ down=”0″][vc_column_text css=”.vc_custom_1512031056723{padding-right: 19% !important;padding-left: 19% !important;}”]

Located in the main street that leads from the Piazza del Campo to the Duomo of Siena, Ristorante Numero Unico is an unforgettable experience to the third millennium wine&food enthusiasts, a culinary journey full of innovation and creativity with original and simple dishes that combine top quality ingredients of one of the most extraordinary world’s destinations, enhancing its smells, scents and colours in a mix of flavours that will surely leave you craving to come back again! Ristorante Numero Unico, with large windows overlooking the oldest part of the city, recalls a book that since 1932 is one of the new artistic expressions of the city and very dear to the Siennese: Numero Unico is the denomination used to indicate a book published by a Contrada to celebrate the victory of the Palio. In the main dining room of Ristorante Numero Unico are exposed the reprints of some of the covers of the Numero Unico of the 17 Contradas along with emotional black and white photographs of unrepeatable moments of the Palio of Siena, the whole in a modern, refined and welcoming environment. From March to the end of October, Ristorante Numero Unico also offers the possibility to dine outdoor with its terraces that give you the sensation of being “suspended” in history and from which you can observe the great skills of our chefs, thanks to a large window overlooking the restaurant’s kitchen, and where, as in a laboratory, ideas take shape and the best ingredients combine research, innovation and the Siennese culture.

[/vc_column_text][vc_separator type=”transparent” up=”36″ down=”0″][vc_row_inner row_type=”parallax” text_align=”left” background_image=”15541″ full_screen_section_height=”no”][vc_column_inner width=”1/3″][/vc_column_inner][vc_column_inner width=”1/3″][vc_empty_space][vc_column_text]

Our MENU’

[/vc_column_text][vc_empty_space][/vc_column_inner][vc_column_inner width=”1/3″][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=”” row_type=”row” use_row_as_full_screen_section=”no” type=”grid” anchor=”news” angled_section=”no” text_align=”center” background_image_as_pattern=”without_pattern” background_color=”#f7f7f7″ padding_top=”85″ padding_bottom=”56″][vc_column][vc_column_text]

NEWS

[/vc_column_text][vc_separator type=”transparent” up=”20″ down=”0″][vc_column_text css=”.vc_custom_1512110115684{padding-right: 19% !important;padding-left: 19% !important;}”]

RISTORANTE NUMERO UNICO: A CULTURAL JOURNEY OF INNOVATION AND CREATIVITY

[/vc_column_text][vc_separator type=”transparent” up=”57″ down=”0″]

[vc_empty_space height=”20px”][vc_column_text]

SEE ALL NEWS

[/vc_column_text][vc_empty_space height=”20px”][/vc_column][/vc_row][vc_row row_type=”parallax” parallax_content_width=”full_width” anchor=”gallery” text_align=”center” full_screen_section_height=”no”][vc_column width=”1/6″][/vc_column][vc_column width=”2/3″][vc_empty_space][vc_column_text]

Gallery

[/vc_column_text][vc_separator type=”transparent” up=”115″ down=”0″][vc_gallery type=”image_grid” images=”15541,15601,15539,15526,15527,15528,15529,15530,15531,15532,15534,15538,15543,15544,15549,15546,15476,15573,15557,15542,15540,15595,15599,15600,15622,15624,15625,15626,15627,15525,15628″ column_number=”5″ grayscale=”no” images_space=”gallery_without_space”][vc_separator type=”transparent” up=”115″ down=”0″][/vc_column][vc_column width=”1/6″][/vc_column][/vc_row][vc_row css_animation=”” row_type=”row” use_row_as_full_screen_section=”no” type=”full_width” anchor=”contatti” angled_section=”no” text_align=”left” background_image_as_pattern=”without_pattern”][vc_column width=”1/4″][/vc_column][vc_column width=”1/2″][vc_empty_space][vc_column_text]

Contacts & Map

[/vc_column_text][vc_separator type=”normal”][/vc_column][vc_column width=”1/4″][/vc_column][/vc_row][vc_row css_animation=”” row_type=”row” use_row_as_full_screen_section=”no” type=”grid” angled_section=”no” text_align=”left” background_image_as_pattern=”without_pattern”][vc_column width=”1/2″][vc_column_text]

Location & Phone

[/vc_column_text][vc_empty_space][vc_column_text]

[/vc_column_text][/vc_column][vc_column width=”1/2″]

[vc_empty_space][/vc_column][/vc_row][vc_row css_animation=”” row_type=”row” use_row_as_full_screen_section=”yes” type=”full_width” angled_section=”no” text_align=”left” background_image_as_pattern=”without_pattern” css=”.vc_custom_1511800814575{background-color: #cecece !important;}”][vc_column][vc_single_image image=”15579″ img_size=”full” alignment=”center” qode_css_animation=”element_from_bottom”][/vc_column][/vc_row]