- published: 07 Feb 2024
- views: 44319537
'+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; })); }); -->
Coordinates: 13°50′N 88°55′W / 13.833°N 88.917°W / 13.833; -88.917
El Salvador (i/ɛl ˈsælvədɔːr/; Spanish: [el salβaˈðor]), officially the Republic of El Salvador (Spanish: República de El Salvador, literally "Republic of The Savior"), is the smallest and the most densely populated country in Central America. El Salvador's capital and largest city is San Salvador. As of 2015, El Salvador had a population of approximately 6.38 million, making it the most densely populated country in the region. Its population consists largely of Mestizos of European and Indigenous American descent.
El Salvador was for centuries inhabited by several Mesoamerican nations, especially the Cuzcatlecs, as well as the Lenca and Maya. In the early 16th century, the Spanish Empire conquered the territory, incorporating it into the Viceroyalty of New Spain. In 1821, the country achieved independence from Spain as part of the First Mexican Empire, only to further secede as part of the Federal Republic of Central America in 1823. Upon the republic's dissolution in 1841, El Salvador became sovereign until forming a short-lived union with Honduras and Nicaragua called the Greater Republic of Central America, which lasted from 1895 to 1898.
El Salvador is a country in Central America.
El Salvador may also refer to:
El Salvador alias El Henrique was a Spanish treasure ship that ran aground near present-day Beaufort Inlet, North Carolina during a hurricane in August of 1750. She was traveling with six other Spanish merchantmen including the Nuestra Señora De Soledad which went ashore near present-day Core Banks, NC and the Nuestra Señora de Guadalupe which went ashore near present-day Ocracoke, NC.
The merchant ship El Salvador sailed from Cartagena, Colombia for Cadiz, Spain loaded with a cargo of gold and silver where she was part of the Spanish treasure fleet, a convoy system adopted by the Spanish Empire from 1566 to 1790. After taking on supplies in Havana, Cuba the heavily laden El Salvador headed for Cadiz with six other Spanish ships on August 7, 1750. Around noon on August 25 the El Salvador and the six other vessels in the fleet were caught in a hurricane Northeast of present-day Cape Canaveral, Florida. The storm forced the ships North along the Gulf Stream where the El Salvador, Soledad and Guadalupe were driven ashore along the Outer Banks of North Carolina. Reports found in the Spanish archives indicate that El Salvador was carrying 240,000 pesos in registered Spanish Treasury funds, made up of four chests of gold coins and sixteen chests of silver coins of varying denominations, plus 50,000 pesos in commercial funds.
The Guardia Nacional (National Guard) of El Salvador was the Salvadoran gendarmerie. It was founded in 1912 by President Dr. Manuel Enrique Araujo. As agreed in the Chapultepec Peace Accords, it was disbanded on 16 January 1992. Its motto was "El honor es nuestra divisa" (Honor is Our Emblem).
Owing to increased demands for higher wages by coffee pickers in rural areas, Salvadoran land owners in the countryside felt the need to create a special public security force to protect their interests. Previous law enforcement and task force efforts failed to yield satisfactory results. The task forces were patrolling soldiers, commanded by an army officer, scattered throughout the country. They were unprepared in the fight against crime in its various guises, and were thus incapable of stopping thefts, killings, rapes and so on. Criminals of that era were using topographical features to hide from the authorities.
This was the primary reason that prompted the President of the Republic Dr. Manuel Enrique Araujo, to create the National Guard. A corps made up of specially trained men with modern equipment and uniformed appropriately for the type of coffee plantations where they were going to act was needed. Furthermore, it was legally constituted to support its actions and proceedings against the offenders to extended the scope of justice to the most remote areas.
National Guard is the name used by a wide variety of current and historical uniformed organizations in different countries. The original National Guard was formed during the French Revolution around a cadre of defectors from the French Guards.
National Guard may refer to:
The Iraqi National Guard (NG; Arabic: الحرس الوطني, al-Ḥaras al-Waṭanī) was part of the new Military of Iraq but has since been absorbed by the Iraqi Army controlled by the interim government. Following the 2003 invasion of Iraq, United States Coalition Provisional Authority Chief Paul Bremer disbanded the military apparatus of Iraq as existed under Saddam Hussein. As the security situation in occupied Iraq deteriorated and the Iraqi insurgency became increasingly active, the U.S. set up, recruited and trained the new security force in order to combat the insurgency. Despite attacks by insurgent and terrorist groups, the Iraqi National Guard was able to recruit many Iraqis from the vast ranks of the unemployed. The force has been used to assist Coalition troops in combatting the insurgency. However, there have been several instances where they have refused to take military action against fellow Iraqis, such as in Fallujah, deserted, or allegedly aided the resistance.
The Army Comrades Association (ACA), later the National Guard, then Young Ireland and finally League of Youth, but better known by the nickname The Blueshirts (Irish: Na Léinte Gorma), was a far-right organisation in the Irish Free State in the early 1930s. The organisation provided physical protection for political groups such as Cumann na nGaedheal from intimidation and attack by the anti-Treaty IRA. Some of its members went on to fight for the Fascists in the Spanish Civil War.
Most of the political parties whose meetings the Blueshirts protected would merge to become Fine Gael, and members of that party are still sometimes nicknamed "Blueshirts".
In February 1932, the Fianna Fáil party was elected to lead the Irish Free State government. On 18 March 1932, the new government suspended the Public Safety Act, lifting the ban on a number of organisations including the Irish Republican Army. Some IRA political prisoners were also released around the same time. The IRA and many released prisoners began a “campaign of unrelenting hostility” against those associated with the former Cumann na nGaedheal government. There were many cases of intimidation, attacks on persons, and the breaking-up of Cumann na nGaedheal political meetings in the coming months. In view of the increased activities of the IRA, National Army Commandant Ned Cronin founded the Army Comrades Association in early 1932. As its name suggested, it was designed for Irish Army veterans, a society for former members of the Free State army. The Blueshirts felt that freedom of speech was being repressed, and began to provide security at Cumann na nGaedheal events. This led to several serious clashes between the IRA and the ACA. In August 1932, Dr. Thomas F. O'Higgins, a Cumann na nGaedheal TD, became the leader of the ACA. By September 1932 it had over 30,000 members.
Una dura medida que ha traído grandes avances a este país. Gracias al CECOT y a la Secretaría de Prensa de la Presidencia de El Salvador por abrirme las puertas para grabar este reportaje. Partes del video: 00:00 - Introducción Celda Aislamiento 00:11 - Vida Prisión Delitos 00:50 - Centro Confinamiento El Salvador 01:06 - Máxima Seguridad Interrogatorio 01:28 - Métodos Castigos 01:56 - Tecnología Bloqueo Señal 02:24 - Revisión Integral Ingreso 02:40 - Acceso Restringido Visitas 03:07 - Control Motines 03:30 - Capacidad Celda 04:01 - Condenas Extremas 04:25 - Perdida Noción Tiempo 04:53 - Atención Médica Interna 05:27 - Procedimiento Nuevos Delitos 06:08 - Audiencias Remotas 06:53 - Medidas Seguridad Traslados 07:10 - Vigilancia Torre 07:36 - Métodos Dormir Prisioneros 07:59 - Extracción...
A 14-year-old girl was killed, and her 11-year-old sister was critically injured in an early morning car crash in Richmond on Monday, police say. KTVU has confirmed the 14-year-old was a student at Richmond High School and her sister is a student at Ford Elementary School. Subscribe to KTVU's YouTube channel: https://www.youtube.com/channel/UCVhtkN7-c8mA8GXEoxS4YQw?sub_confirmation=1 KTVU delivers the best in-depth reports, interviews and breaking news coverage in the San Francisco Bay Area and California Watch KTVU's newscasts on https://www.ktvu.com/live Download KTVU's news and weather apps for free at https://www.ktvu.com/mobile-apps Subscribe to KTVU's newsletter at https://www.ktvu.com/newsletters Follow KTVU on Facebook: https://www.facebook.com/ktvu Follow KTVU on Twitter: h...
We're in El Salvador! We already know we'll be returning to this place ASAP. I could spend days in artisanal towns looking for handmade items. Of course we enjoy some pupusas and get to try one we had never heard of, yucca pupusas! Thanks for watching and we'll catch you next week! To keep more up to date, check us out on Instagram @taklyntheworld we post quite a bit on our stories.
Dive into the heart of El Salvador's struggle for peace as we unravel the moral complexities of the War on Gangs. Discover the highs and lows, the crackdown's impact, and the harsh realities faced by its people. → Subscribe for new videos at least twice a week! https://www.youtube.com/c/biographics?sub_confirmation=1 Love content? Check out Simon's other YouTube Channels: Biographics: https://www.youtube.com/channel/UClnDI2sdehVm1zm_LmUHsjQ Geographics: https://www.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw MegaProjects: https://www.youtube.com/channel/UC0woBco6Dgcxt0h8SwyyOmw SideProjects: https://www.youtube.com/channel/UC3Wn3dABlgESm8Bzn8Vamgg Casual Criminalist: https://www.youtube.com/channel/UCp1tsmksyf6TgKFMdt8-05Q TopTenz: https://www.youtube.com/user/toptenznet Today I Found ...
2024/25 Concacaf Nations League Group Stage | League B | Group A El Salvador vs St. Vincent & the Grenadines Arnos Vale Sporting Complex #CNL #concacaf #nationsleague #highlights #groupstage #elsalvador #stvincentandthegrenadines 🔔 Subscribe to our channel, and turn on notifications: https://www.youtube.com/concacaf/view_as=subscriber?sub_confirmation=1 💻 You can also visit our website and enjoy our exclusive content: https://www.concacaf.com/ 📱 Follow us on our social networks: Instagram: https://www.instagram.com/concacafnationsleague/ Twitter: https://twitter.com/CNationsLeague Facebook: https://www.facebook.com/ConcacafNationsLeague
Best Countries to Live in for 2024 ▶ https://youtu.be/Yk74cTnXLWE 💰 Book a Call and Become Our Client ▶ https://www.wealthyexpat.com/#calendly 🚨 Join our private mastermind community ▶ https://www.skool.com/wealthyexpat Have questions or want to check if we can help you? Message Me Directly on Whatsapp ▶ https://wealthyexpatcall.com/whatsapp Summary of this video: 💼 Tax Changes in El Salvador - Remittances from abroad for earned income are now tax-free, reduced from 30% to 0%. - Cryptocurrency earnings, specifically Bitcoin, are also tax-free. - Citizenship can be acquired through a significant donation, limited to a specific number of applicants. 🏡 Real Estate Development and Safety Measures - Significant real estate development in the capital and coastal areas. - Str...
🌎🔫 From being dubbed "the murder capital of the world" to a significant decrease in violence, El Salvador's journey under President Nayib Bukele is remarkable. In 2015, the country had the highest homicide rate globally, which has drastically reduced due to controversial anti-gang measures. This video dives into the drastic strategies that changed El Salvador's fate, from deploying military forces to innovative prison reforms. Discover how El Salvador combats its gang crisis and the international debate it sparks. #ElSalvador #Bukele #GangReform 🚨👮♂️#america #mexico #southamerica #crime #military #gang #police #prisionero #jailer #jail #CrimeReduction #HomicideRate #MilitaryStrategy #PrisonReform #GlobalSafety #ControversialPolitics #themilitaryshow
In this San Salvador, El Salvador travel guide we explore the city center, do some hiking and then head down to Surf City and the beaches near San Salvador. As you know El Salvador is popular with surfers and the Bitcoin investors. El Salvador has really become and up and coming country in Central America. We explore El Salvador in December 2021. But this travel guide really can apply to El Salvador 2022. We show you the best things to do in San Salvador in this travel video. Mexico City Travel Video: https://youtu.be/ozU1MpRSZcA Island Hopper TV takes you around the world to the premiere travel destinations. Our virtual travel guides from across America to Asia, Europe and Australia have assisted many world travelers in educating themselves on their next destination to travel or even v...
El Salvador was once one of the most dangerous nations in the Western Hemisphere. However, due to the draconian efforts of President Bukele, the Central American nation improved drastically. In the present, El Salvador is safe for locals and tourists alike... Let's go back to El Salvador.
Hoy nos fuimos a conocer lo más nuevo en la zona de Surf City para ser específicos en Playa El Zonte La Libertad. Hoy Los traje a conocer el primer hotel de domos en las playas de El Salvador o el primer Glamping de lujo en surf city. Hoy conocimos Almare El Zonte un Glamping de lujo en Playa El Zonte que es noticia en El Salvador y muy nuevo en la zona. En este video te cuento cuánto cuesta, un tour por el lugar y que lugares o restaurantes hay cerca del lugar. Así que si buscas airbnbs nuevos en las playas de El Salvador este lugar te gustará. Nosotros reservamos aquí: https://www.booking.com/Share-XECtWrD O en airbnb como: https://www.airbnb.com/slink/pm6De3MW O puedes hacerlo en su página web: www.almarezonte.com Gracias a todos por el apoyo y ver los videos! ❤️ No olviden dejar s...
Coordinates: 13°50′N 88°55′W / 13.833°N 88.917°W / 13.833; -88.917
El Salvador (i/ɛl ˈsælvədɔːr/; Spanish: [el salβaˈðor]), officially the Republic of El Salvador (Spanish: República de El Salvador, literally "Republic of The Savior"), is the smallest and the most densely populated country in Central America. El Salvador's capital and largest city is San Salvador. As of 2015, El Salvador had a population of approximately 6.38 million, making it the most densely populated country in the region. Its population consists largely of Mestizos of European and Indigenous American descent.
El Salvador was for centuries inhabited by several Mesoamerican nations, especially the Cuzcatlecs, as well as the Lenca and Maya. In the early 16th century, the Spanish Empire conquered the territory, incorporating it into the Viceroyalty of New Spain. In 1821, the country achieved independence from Spain as part of the First Mexican Empire, only to further secede as part of the Federal Republic of Central America in 1823. Upon the republic's dissolution in 1841, El Salvador became sovereign until forming a short-lived union with Honduras and Nicaragua called the Greater Republic of Central America, which lasted from 1895 to 1898.