- published: 30 Jun 2022
- views: 24251
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
The 6th arrondissement of Paris is one of the 20 arrondissements (administrative districts) of Paris, France. It includes world famous educational institutions such as the École des Beaux-Arts de Paris and the Académie française, the seat of the French Senate as well as a concentration of some of Paris's most famous monuments such as Saint-Germain Abbey and square, St. Sulpice Church and square, the Pont des Arts and the Jardin du Luxembourg.
Situated on the left bank of the River Seine, this central arrondissement which includes the historic districts of Saint-Germain-des-Prés (surrounding the Abbey founded in the 6th century) and Luxembourg (surrounding the Palace and its Gardens) has played a major role throughout Paris history and is well known for its café culture and the revolutionary intellectualism (see: Existentialism, Jean-Paul Sartre, Simone de Beauvoir) and literature (see: Paul Éluard, Boris Vian, Albert Camus, Françoise Sagan) it has hosted.
With its world famous cityscape, deeply rooted intellectual tradition, prestigious history, beautiful architecture and central location, the arrondissement has long been home to French intelligentsia. It is a major locale for art galleries and one of the most fashionable districts of Paris as well as Paris' most expensive area. The arrondissement is one of France's richest district in terms of average income, it is part of Paris Ouest alongside the 7th, 8th, 16th arrondissements and Neuilly, but has a much more bohemian and intellectual reputation than the others.
Paris (UK: /ˈpærɪs/ PARR-iss; US: i/ˈpɛərɪs/ PAIR-iss; French: [paʁi]) is the capital and most populous city of France. Situated on the Seine River, in the north of the country, it is in the centre of the Île-de-France region, also known as the région parisienne, "Paris Region". The City of Paris has an area of 105 km² (41 mi²) and a population of 2,241,346 (2014 estimate) within its administrative borders essentially unchanged since 1860.
Since the 19th century, the built-up area of Paris has grown far beyond its administrative borders; together with its suburbs, the whole agglomeration has a population of 10,550,350 (Jan. 2012 census).Paris' metropolitan area spans most of the Paris region and has a population of 12,341,418 (Jan. 2012 census), or one-fifth of the population of France. The administrative region covers 12,012 km² (4,638 mi²), with approximately 12 million inhabitants as of 2014, and has its own regional council and president.
Paris was founded in the 3rd century BC by a Celtic people called the Parisii, who gave the city its name. By the 12th century, Paris was the largest city in the western world, a prosperous trading centre, and the home of the University of Paris, one of the first in Europe. In the 18th century, it was the centre stage for the French Revolution, and became an important centre of finance, commerce, fashion, science, and the arts, a position it still retains today.
"Paris (Ooh La La)" is the second single from Grace Potter and the Nocturnals' eponymous third studio album.
Oscar Jackson, Jr. (born October 29, 1967), better known by his stage name Paris, is an American rapper from San Francisco, California, known for his highly charged political and socially conscious lyrics. Influenced by the Black Panthers, he was once a member of the Nation of Islam, but now is agnostic.
Paris was catapulted onto the national scene in 1990 with his hit single The Devil Made Me Do It and album of the same name, after earning a bachelor's degree in economics from UC Davis. Originally released on Tommy Boy Records, his first single was banned by MTV. Since then his stance on political issues and social commentary have both aided and hindered his quest to bring his music and messages to the masses.
When his second album, Sleeping with the Enemy, was ready for release in 1992, Paris was dropped from now-defunct Tommy Boy Records (since rechristened Tommy Boy Entertainment in 2002) and distributor Warner Bros. Records, owned by Time Warner, when the parent company discovered its incendiary content, which included fantasy revenge killings of then-President Bush and racist police officers. Also problematic was the album's insert, which featured the artist waiting behind a tree, holding a Tec 9, as the president was waving to the crowd. Paris eventually released the LP himself on his newly formed Scarface Records. Also in 1992, Paris contributed to industrial music band Consolidated's 1992 album Play More Music with the track "Guerrillas in the Mist."
The 6th arrondissement is this week's focus, here's what we found after spending a full day there. Featured in this video: Cafe de Flore, Address: 172 Bd Saint-Germain, 75006 Musée Eugène Delacroix, Address: 6 Rue de Furstemberg, 75006 Officine Universelle Buly 1803, Address: 6 Rue Bonaparte, 75006 Luxembourg Gardens Saint-Sulpice Church, Address: 2 Rue Palatine, 75006 Église de Saint Germain des Prés Address: 3 Pl. Saint-Germain des Prés, 75006 Ladurée, Address: 21 Rue Bonaparte, 75006 La Palette Cafe, Address: 43 Rue de Seine, 75006 Le Select, Address: 99 Bd du Montparnasse, 75006 Brasserie Lipp, Address: 151 Bd Saint-Germain, 75006 Prescription Cocktail Club, Address: 23 Rue Mazarine, 75006 Lapérouse, Address: 51 Quai des Grands Augustins, 75006 The music is by Pres Maxson, it's...
CHECK OUT LINGODA : https://try.lingoda.com/Getthemargarita_MarchTrial AND USE CODE : "MARGARITA30" for 30% of your first payment :) #lingoda202303 Today is the sixth video in my series exploring the 20 arrondissements of Paris ! The goal of these videos will be to help you get familiarised with every square inch of Paris if you plan on moving or travelling to this beautiful city. This video will be a travel guide vlog for the sixth arrondissement of Paris. As always, if you have any questions or need any advice on moving to France leave them in the comments! I'm here to help :) Follow me! 🌍 Instagram : @get.the.margarita 🌍 Email : [email protected] GROS BISOUS!! Arielle ••••••••••••••••••••••••• TIME STAMPS ••••••••••••••••••••••••• 0:00 - Intro 0:42 - Lingoda sp...
Discover this Paris Neighborhood in the 6th Arrondissement called Saint Germain des Prés. GET The Best Hotels of Paris Guide Downloadable PDF Format 👉 https://bit.ly/2024ParisHotelGuidePDF ONLINE (Via Thatch App) 👉 https://bit.ly/FreeOnlineParisHotelGuide GET YOUR 2024 Paris Restaurant Guide 👉 https://bit.ly/LesFrenchiesParisTravelGuides FOOD TOUR with Vincent (St Germain, Montmartre & Le Marais) 👉 https://lesfrenchiestravel.com/les-frenchies-food-tours-in-paris/ FOOD TOUR with Silvia (Fresh Market Experience & Le Marais) 👉https://lesfrenchiestravel.com/food-tour-with-sylvia/ === BOOK YOUR PRIVATE SIGHTSEEING TOURS BELOW === 👉 https://bit.ly/ParisCustomTours ⚡️ Video Notes ⚡️ 1️⃣ Paris Travel Guides ➡️ https://bit.ly/LesFrenchiesParisTravelGuides 2️⃣ OUR RECOMMENDATIONS FOR T...
Saint-Germain-des-Prés (the 6th arrondissement) is best-known for its historic bars, wide boulevards, luxury shops, and for being where many of the locations that iconic writers and artists frequented during the late 19th and early 20th-centuries. In this video, we're going to detail the best things to do in Saint Germain des Pres, as well as some of the top hidden gems, attractions you can't miss, and a brief overview of the history of the area. Places mentioned in the video: - Jardin du Luxembourg - Medici fountain - Saint Sulpice - Le Bon Marché - Les Deux Magots - Café de Flore - Église Saint Germain des Prés - Maison de Serge Gainsbourg - L’institut de France - Pont des Arts What to watch next 👇 Ultimate Paris guide: https://youtu.be/gzM1YJMlAU0?si=4Zt67lpnZyZ-q_ls Best of...
Hello ! Today we are going to visit the 6th arrondissement of Paris. It's a beautiful district in the south of Paris where are located many trendy places and restaurants. The atmosphere in Paris is so good when the evening comes. You always feel like you're on holiday. Good vibes only 😄 Want to see where the Parisian go out with their friends? Want to see where to eat in awesome restaurants? Walk with me and discover the Paris you've never seen! For this walking tour in Paris, I used: - PHONE: https://amzn.to/3MCsMoS - DJI OM 4 SE : https://amzn.to/3KkOWcA Please, subscribe to this channel so you don't miss the next videos: https://www.youtube.com/channel/UCyuBgiPc9wc2_PreVCwg0zA?sub_confirmation=1 Thanks a lot for your support! #paris #paris4k #pariswalk #pariswalkingtour #citywa...
Hi! Welcome to UHD Walking Adventures. Restaurants, shops, Cafes, Back streets - Walking in 6th Arrondissement of Paris. 01:24 Intro / Place Saint Germain des Prés 02:34 Rue Bonaparte 03:37 Rue des Cannettes 05:49 Place de saint Sulpice / Eglise Saint Sulpice 11:45 Rue Saint Sulpice 15:43 Rue de Seine 19:22 Rue de Buci 22:10 Rue de l'Ancienne Comédie 24:53 Cour du Commerce Sait Andre 26:58 Rue Saint Andre des Arts 31:36 Place Saint Michel 36:00 Boulevard Saint Michel Thank you for your support and please keep supporting this channel. Please Like, Share and Subscribe. https://www.youtube.com/channel/UCQrnl3v9mkozB6Z_zmBWpLw More Videos Around France: https://www.youtube.com/playlist?list=PLvb6w4szcIX8GoJEJ-_5z1D4T0uZcBLiU Playlist Walks in Spain https://www.youtube.com/playlist?list=PLvb...
Hi! Welcome to UHD Walking Adventures.HDR walking in Paris , 6th Arrondissement of Paris March 23, 2023 - 4K HDR 60 fps Hope you enjoy the HDR quality of this video. 00:00 Preview 01:00 Place Saint Sulpice / Eglise Saint Sulpice 17:27 Rue Bonaparte 21:16 Jardin du Luxemburg 34:17 Rue de Médicis 38:18 Place de l'Odeon 39:36 Rue Racine 42:46 Boulevard Saint Michel 46:52 Palace Saint Michel Thank you for your support and please keep supporting this channel. Please Like, Share and Subscribe. https://www.youtube.com/channel/UCQrnl3v9mkozB6Z_zmBWpLw More Videos Around France: https://www.youtube.com/playlist?list=PLvb6w4szcIX8GoJEJ-_5z1D4T0uZcBLiU Playlist Walks in Spain https://www.youtube.com/playlist?list=PLvb6w4szcIX9FHc2dwa1M6TcnO7ybcKzZ Playlist Walks in Normandy, France https://www....
Paris France, Walking in Paris 6th arrondissement 00:00 Preview 00:30 Intro 01:18 Rue Corneille 02:18 Place de l'Odéon 04:45 Rue de Vaugirard 06:33 Rue de Tournon 10:07 Rue Saint-Sulpice 14:19 Place Saint-Sulpice / Eglise Saint-Sulpice 18:54 Rue du Vieux-Colombier 20:46 Rue de Rennes 24:34 Eglise Saint Germain des Prés 27:12 Boulevard Saint-Germain 30:31 Rue de Buci 36:38 Rue de Seine Hope you enjoy this content. Please help my channel grow by leaving some comments, liking and subscribe to my channel. https://www.youtube.com/channel/UCQrnl3v9mkozB6Z_zmBWpLw?view_as=subscriber Camera used: DJI Osmo pocket 2 More Walking Videos around France: Colmar https://youtu.be/AzsEMVwNGOQ Metz https://youtu.be/nnfRi8I5Pl0 Strasbourg https://youtu.be/seWOHG9rvPU Caen https://youtu.be/vz6Bm5VV9NQ De...
Paris' 6th Arrondissement has tons of great stuff like Jardin de Luxembourg, Saint Germain des Pres, and lots more. Find my recommendations in my guide to Paris here: https://go.parisinmypocket.com/20in20 like Treize au Jardin (who's also in the game) Help me make better videos at http://patreon.com/jayswanson and join in the game at http://travelunlock.com then find me on the internet in all of the usual spots: More swag here: https://www.jayswanson.me/gear (my gear and books) https://gum.co/camerafour (Disposable Camera Four digital scans) Follow me here: http://twitter.com/jayonaboat http://instagram.com/jayswanson Music by: David Cutter Music - http://www.davidcuttermusic.co.uk The 6th arrondissement of Paris contains Saint Germain des Pres, Saint Sulpice, the Luxemburg Gardens, a...
The 6th arrondissement of Paris is one of the 20 arrondissements (administrative districts) of Paris, France. It includes world famous educational institutions such as the École des Beaux-Arts de Paris and the Académie française, the seat of the French Senate as well as a concentration of some of Paris's most famous monuments such as Saint-Germain Abbey and square, St. Sulpice Church and square, the Pont des Arts and the Jardin du Luxembourg.
Situated on the left bank of the River Seine, this central arrondissement which includes the historic districts of Saint-Germain-des-Prés (surrounding the Abbey founded in the 6th century) and Luxembourg (surrounding the Palace and its Gardens) has played a major role throughout Paris history and is well known for its café culture and the revolutionary intellectualism (see: Existentialism, Jean-Paul Sartre, Simone de Beauvoir) and literature (see: Paul Éluard, Boris Vian, Albert Camus, Françoise Sagan) it has hosted.
With its world famous cityscape, deeply rooted intellectual tradition, prestigious history, beautiful architecture and central location, the arrondissement has long been home to French intelligentsia. It is a major locale for art galleries and one of the most fashionable districts of Paris as well as Paris' most expensive area. The arrondissement is one of France's richest district in terms of average income, it is part of Paris Ouest alongside the 7th, 8th, 16th arrondissements and Neuilly, but has a much more bohemian and intellectual reputation than the others.