'+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; })); }); -->

St. George (TTC)

St. George is a station on the Yonge-University and Bloor-Danforth lines in Toronto, Ontario, Canada. It is located north of Bloor Street West between St. George Street and Bedford Road. This is the second-busiest station, after Bloor-Yonge Station, serving a combined total of approximately 254,940 people a day. Wi-fi service is available at this station.

Entrances

  • St. George Street entrance is automatic and staffed during rush hours. It is located on the east side of St. George Street just north of Bloor Street West at 43°40′05.75″N 79°23′59.6″W / 43.6682639°N 79.399889°W / 43.6682639; -79.399889
  • Bedford entrance is located on the west side of Bedford Road just north of Bloor Street West at 43°40′07.25″N 79°23′52.4″W / 43.6686806°N 79.397889°W / 43.6686806; -79.397889. Patrons board the 26 Dupont bus from a platform within the station boundaries at this entrance without the need for a paper transfer.
  • History

    The station was first opened on February 28, 1963 for the University section of the Yonge-University line, followed by the Bloor-Danforth line on February 26, 1966, and finally on January 28, 1978 for the Spadina section of the former line.

    Saint-George

    Saint-George is a municipality in the Swiss canton of Vaud. It is located in the district of Nyon.

    History

    Saint-George is first mentioned in 1153 as Sancti Georgii de Essartinis.

    Geography

    Saint-George has an area, as of 2009, of 12.32 square kilometers (4.76 sq mi). Of this area, 2.18 km2 (0.84 sq mi) or 17.7% is used for agricultural purposes, while 9.42 km2 (3.64 sq mi) or 76.5% is forested. Of the rest of the land, 0.71 km2 (0.27 sq mi) or 5.8% is settled (buildings or roads) and 0.02 km2 (4.9 acres) or 0.2% is unproductive land.

    Of the built up area, housing and buildings made up 3.7% and transportation infrastructure made up 1.8%. Out of the forested land, 74.9% of the total land area is heavily forested and 1.5% is covered with orchards or small clusters of trees. Of the agricultural land, 8.0% is used for growing crops and 4.8% is pastures and 4.8% is used for alpine pastures.

    The municipality was part of the Aubonne District until it was dissolved on 31 August 2006, and Saint-George became part of the new district of Nyon.

    Saint George

    Saint George (Greek: Γεώργιος Georgios; Latin: Georgius; AD 275–281 to 23 April 303), according to legend, was a soldier in the Roman army who later became venerated as a Christian martyr. His parents were Christians of Greek background; his father Gerontius was a Roman army official from Cappadocia and his mother Polychronia was a Christian from Lydda in the Roman province of Syria Palaestina (Palestine). Accounts differ regarding whether George was born in Cappadocia or Syria Palaestina, but agree that he was raised at least partly in Lydda. Saint George became an officer in the Roman army in the Guard of Diocletian, who ordered his death for failing to recant his Christian faith.

    In hagiography, Saint George is one of the most venerated saints in the Catholic Church (Latin and Eastern), Anglican, East Syrian, and Miaphysite Churches. He is one of the Fourteen Holy Helpers and is regarded as one of the most prominent military saints, immortalized in the myth of Saint George and the Dragon killing in Beirut, Lebanon. His memorial, Saint George's Day, is traditionally celebrated on the Julian date of 23 April (currently the 6th of May according to the Gregorian Calendar). Many countries, cities, professions and organisations claim Saint George as their patron.

    Podcasts:

    • St George's Day | Religious Studies - Patron Saints | BBC Teach

      For more episodes and free, supporting teachers' notes: https://www.bbc.co.uk/teach/school-radio/assemblies-ks1-ks2-st-george-georges-day-patron-saint-england/zrwgcmn St George's Day is celebrated throughout England on 23 April. But what do we know about the real St George? This short film is from the series Patron Saints. It is designed to be a classroom resource suitable for teaching Religious Studies at KS1/KS2 in England, Wales and Northern Ireland, and 1st and 2nd Level in Scotland. For more content like this, visit the BBC Teach website. Whether you're at home or at school, you can use BBC Teach for free. Our website is home to thousands of free curriculum-mapped videos, arranged by age-group and subject: https://www.bbc.co.uk/teach Subscribe to the BBC Teach YouTube chann...

      published: 01 Feb 2023
    • The Story of Saint George

      Happy Saint George’s Day! Here’s to an incredible man of faith, courage, and resolve!

      published: 23 Apr 2021
    • The Powerful Meaning of St George | Joseph Campbell and Jonathan Pageau

      Exploring history, myth and meaning in the story of Saint George. A story of huge cultural significance, George of Lydda was the young 4th century Christian martyr who apparently fought against a dragon and gave his life in refusing to renounce his Christian faith. We may think the dragon story is now a cliché, but here I offer just my opinions on what I make of it, touching on Joseph Campbell's abstractions of the heroic type and Jonathan Pageau's ideas/observations on attention. DISCLAIMER - This video is for comment and educational purposes. All images and music used in the video belong to their respective owners and I or this channel does not claim any right over them. Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes ...

      published: 18 Dec 2021
    • Saint George and the Dragon - Into the Maw of Danger - European - Extra Mythology

      Watch Extra Mythology ad-free on Nebula! https://go.nebula.tv/extramythology Once there was a land beset by a dragon. The dragon breathed noxious fumes that poisoned the water and the countryside. To try and appease the dragon, the city paid it tribute in the form of farm animals, but those quickly ran out. They were left with no choice but to sacrifice village members to the dragon. But along came a mythic knight named George with a crazy idea: What if we killed the dragon instead? Support Extra Mythology on Patreon! http://bit.ly/EHPatreon ___________ Thanks for participating in this week's discussion! We want you to be aware of our community posting guidelines so that we can have high-quality conversations: https://becausegamesmatter.com/extra-credits-community-code-of-conduct Cont...

      published: 20 May 2020
    • Story of Saint George | English | Story of Saints

      Watch the amazing story of Saint George Today, Saint George according to legend, was a Roman soldier of Greek origin and officer in the Guard of Roman emperor Diocletian, who was sentenced to death for failing to recant his Christian faith.As a Christian martyr, he later became one of the most venerated saints in Christianity, and was especially venerated by the Crusaders. George's parents were Christians of Greek background, Stories of saints Saints for kids is a first of its kind you tube channel that is dedicated completely on the stories of the disciples of Jesus and teaches you the different saints across the globe who walked through the path of Jesus Christ, you can watch the stories of saints in malayalam and the channel covers the life stories, the hard paths that the saints hav...

      published: 23 Nov 2017
    • Saint Georges

      I dedicate this one to my late father, who taught me dragons often don't live in caves, but within our hearts, and it is up to us to fight them. Please say a Hail Mary for him if you can. The story of St. George and the dragon is told in the Golden Legend. A dragon lived in a swamp near Silena, terrorizing the landscape with its breath of a pestilence. The townfolk fed it two sheep a day to appease it. The dragon had had enough of sheep and began pursuing human victims. There were no substitutes allowed when the lots were drawn, so the king's daughter was designated as the next sacrifice one day. She was escorted to a swamp. When the dragon emerged, George approached and made the sign of the cross before stabbing it with his lance. He demanded the maiden's girdle, which he wrapped around ...

      published: 23 Apr 2021
    • Saint George: Great Martyr and Triumphant

      #orthodoxsaints One of our earliest videos is this one on the life of Saint George. Saint George (Greek: Γεώργιος, Geṓrgios; Latin: Georgius; d. 23 April 303[4]) was a Roman soldier of Greek origin and a member of the Praetorian Guard for Roman emperor Diocletian, who was sentenced to death for refusing to recant his Christian faith. He became one of the most venerated saints and megalo-martyrs in Christianity, and was especially venerated by the Crusaders. Orthodox Christians commemorate his feast day on April 23rd. TRISAGION FILMS NEEDS YOUR SUPPORT 1. SUPPORT: If you enjoy our videos, please consider supporting our effort via PayPal or on Patreon. PayPal at - https://www.paypal.com/us/fundraiser/charity/3379869 Patreon at - https://www.patreon.com/trisagionfilms. 2. SUBSCRIBE: To b...

      published: 23 Apr 2012
    • Saint George and the Dragon

      A city's water supply was guarded by a fierce Dragon, and the only way to stop it from attacking citizens was to offer it a Sheep every day. When the city began to lose Sheep, it was decided that a youth would be sacrificed each day, decided by lottery. When the city's beloved princess is chosen as the next sacrifice, all hope seems to be lost...that is until the timely arrival of the valiant Saint George! MYTHOLOGY HAS BEEN TOLD AND RETOLD IN MANY FORMS ACROSS TIME, STORIES AND ACCOUNTS MAY VARY. MUSIC: "Village Consort" "Medieval Action music" Unwind Station "Relaxing Fantasy music" Elysio OPENING: https://www.fiverr.com/saif_edits ARTISTS FEATURED: John Howe Nick Palin John Rackham Earl Norem JK Rooks Trina Shart Hyman REFERENCES: https://sites.pitt.edu/~dash/stgeorge1.html https:/...

      published: 05 Jan 2022
    • Saint George the Greatmartyr and Victorybearer (The Reliquary)

      Patreon: https://www.patreon.com/BibleIllustrated Subscribe Star: https://www.subscribestar.com/bible-illustrated Secondary channel: https://www.youtube.com/channel/UC-GsjDllyt641FyyWJVcOpA Bible Illustrated blog: https://bible-illustrated.blogspot.rs/2015/04/the-bible.html Facebook page: https://www.facebook.com/BibleIllustrated Twitter: https://twitter.com/Bibllustrated Instagram: https://www.instagram.com/bibleillustrated Bitcoin donations: 1ezwT9w1AphiY1RSy9hCCCAkYL5PSQSft Subreddit: https://www.reddit.com/r/bibleillustrated/ Sound Editing: Uroš and Mira Nikolić Music: Luka Čubrilo Illustration and Narration: Me (Reader Bojan Teodosijević) A young military commander opposes the religious policy of a seriously unhinged pagan emperor.

      published: 06 May 2021
    • The head of Saint George slayer of the dragon, is buried HERE- Church of Saint George, Lod (Lydda)

      Information about the Church of Saint George, Lod (Lydda) itself will be provided after this announcement. Should you wish to support me and my videos please subscribe to my channel and let me guide you through the Holy Land via my videos. In this way, I will be able to continue to do my work of uploading to YouTube. Upon your request and in return I am very much happy to pray for you at the Western Wall and/or light a candle in your name at the Church of the Holy Sepulchre or anywhere else in the Holy Land of Israel. Should you have a personal request I will be more than happy to respond and even film it in a personal video. Support and purchase of goods from the Holy Land: https://www.buymeacoffee.com/zahishaked Support using PayPal: https://www.paypal.com/paypalme/zahishaked?fbclid=Iw...

      published: 06 Sep 2022
    developed with YouTube
    St George's Day | Religious Studies - Patron Saints | BBC Teach
    4:34

    St George's Day | Religious Studies - Patron Saints | BBC Teach

    • Order:
    • Duration: 4:34
    • Uploaded Date: 01 Feb 2023
    • views: 71224
    For more episodes and free, supporting teachers' notes: https://www.bbc.co.uk/teach/school-radio/assemblies-ks1-ks2-st-george-georges-day-patron-saint-england/zrwgcmn St George's Day is celebrated throughout England on 23 April. But what do we know about the real St George? This short film is from the series Patron Saints. It is designed to be a classroom resource suitable for teaching Religious Studies at KS1/KS2 in England, Wales and Northern Ireland, and 1st and 2nd Level in Scotland. For more content like this, visit the BBC Teach website. Whether you're at home or at school, you can use BBC Teach for free. Our website is home to thousands of free curriculum-mapped videos, arranged by age-group and subject: https://www.bbc.co.uk/teach Subscribe to the BBC Teach YouTube channel: https://www.youtube.com/bbcteach?sub_confirmation=1 Get in touch via Facebook: https://www.facebook.com/BBCTeach/ Find more resources on BBC Bitesize: https://www.bbc.co.uk/bitesize
    https://wn.com/St_George's_Day_|_Religious_Studies_Patron_Saints_|_BBC_Teach
    The Story of Saint George
    5:29

    The Story of Saint George

    • Order:
    • Duration: 5:29
    • Uploaded Date: 23 Apr 2021
    • views: 68903
    Happy Saint George’s Day! Here’s to an incredible man of faith, courage, and resolve!
    https://wn.com/The_Story_Of_Saint_George
    The Powerful Meaning of St George | Joseph Campbell and Jonathan Pageau
    10:44

    The Powerful Meaning of St George | Joseph Campbell and Jonathan Pageau

    • Order:
    • Duration: 10:44
    • Uploaded Date: 18 Dec 2021
    • views: 12690
    Exploring history, myth and meaning in the story of Saint George. A story of huge cultural significance, George of Lydda was the young 4th century Christian martyr who apparently fought against a dragon and gave his life in refusing to renounce his Christian faith. We may think the dragon story is now a cliché, but here I offer just my opinions on what I make of it, touching on Joseph Campbell's abstractions of the heroic type and Jonathan Pageau's ideas/observations on attention. DISCLAIMER - This video is for comment and educational purposes. All images and music used in the video belong to their respective owners and I or this channel does not claim any right over them. Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.”
    https://wn.com/The_Powerful_Meaning_Of_St_George_|_Joseph_Campbell_And_Jonathan_Pageau
    Saint George and the Dragon - Into the Maw of Danger - European - Extra Mythology
    7:45

    Saint George and the Dragon - Into the Maw of Danger - European - Extra Mythology

    • Order:
    • Duration: 7:45
    • Uploaded Date: 20 May 2020
    • views: 356950
    Watch Extra Mythology ad-free on Nebula! https://go.nebula.tv/extramythology Once there was a land beset by a dragon. The dragon breathed noxious fumes that poisoned the water and the countryside. To try and appease the dragon, the city paid it tribute in the form of farm animals, but those quickly ran out. They were left with no choice but to sacrifice village members to the dragon. But along came a mythic knight named George with a crazy idea: What if we killed the dragon instead? Support Extra Mythology on Patreon! http://bit.ly/EHPatreon ___________ Thanks for participating in this week's discussion! We want you to be aware of our community posting guidelines so that we can have high-quality conversations: https://becausegamesmatter.com/extra-credits-community-code-of-conduct Contribute community subtitles to Extra Mythology: http://www.youtube.com/timedtext_cs_panel?c=UCCODtTcd5M1JavPCOr_Uydg&tab=2 Talk to us on Twitter (@ExtraCreditz): http://bit.ly/ECTweet Follow us on Facebook: http://bit.ly/ECFBPage Watch us play games and have fun on http://bit.ly/ECtwitch Follow us on Instagram: http://bit.ly/ECisonInstagram Follow us on Tumblr: http://bit.ly/EConTumblr ___________ ♪ Music: "Extra Mythology Theme" by Big Giant Circles http://www.biggiantcircles.com/
    https://wn.com/Saint_George_And_The_Dragon_Into_The_Maw_Of_Danger_European_Extra_Mythology
    Story of Saint George | English | Story of Saints
    14:06

    Story of Saint George | English | Story of Saints

    • Order:
    • Duration: 14:06
    • Uploaded Date: 23 Nov 2017
    • views: 479669
    Watch the amazing story of Saint George Today, Saint George according to legend, was a Roman soldier of Greek origin and officer in the Guard of Roman emperor Diocletian, who was sentenced to death for failing to recant his Christian faith.As a Christian martyr, he later became one of the most venerated saints in Christianity, and was especially venerated by the Crusaders. George's parents were Christians of Greek background, Stories of saints Saints for kids is a first of its kind you tube channel that is dedicated completely on the stories of the disciples of Jesus and teaches you the different saints across the globe who walked through the path of Jesus Christ, you can watch the stories of saints in malayalam and the channel covers the life stories, the hard paths that the saints have passed through in their way to saint hood, you can also watch the miracles and the truth that the saints teaches you through their life. SAINT GEORGE,SAINT GEORGE DAY,SAINT GEORGE FEAST DAY,SAINTS FOR KIDS,STORY OF SAINT GEORGE,SAINT GEORGE AND THE DRAGON,
    https://wn.com/Story_Of_Saint_George_|_English_|_Story_Of_Saints
    Saint Georges
    1:35

    Saint Georges

    • Order:
    • Duration: 1:35
    • Uploaded Date: 23 Apr 2021
    • views: 617159
    I dedicate this one to my late father, who taught me dragons often don't live in caves, but within our hearts, and it is up to us to fight them. Please say a Hail Mary for him if you can. The story of St. George and the dragon is told in the Golden Legend. A dragon lived in a swamp near Silena, terrorizing the landscape with its breath of a pestilence. The townfolk fed it two sheep a day to appease it. The dragon had had enough of sheep and began pursuing human victims. There were no substitutes allowed when the lots were drawn, so the king's daughter was designated as the next sacrifice one day. She was escorted to a swamp. When the dragon emerged, George approached and made the sign of the cross before stabbing it with his lance. He demanded the maiden's girdle, which he wrapped around the beast's neck. They returned with the dragon to town. George urged the people to be baptized and to be fearless, and then he slashed the dragon's head off. Everyone had been transformed. George turned down the king's offer of half his kingdom, stating that he would continue riding. He advised the king to look after the churches, respect the clergy, and have compassion on the poor. He became popular in the Middle Ages, and was one of the saints revered by the Crusaders, alongside Saint Maurice. Lyrics: Fier chevalier, l’éclat de ton armure Comme un soleil attire tous les yeux ; Ta loyauté, ton âme toute pure Nous ont conquis, et nous voici joyeux. Saint Georges, guide-nous Sur la route claire et belle Saint Georges, guide-nous, Rends-nous fermes et prêts à tout. Garde à nos yeux le charme d’un sourire Quand nous souffrons au plein de notre effort ; Et dussions-nous souffrir un long martyr, Tiens nos cœurs droits quand faibliront nos corps Saint Georges, guide-nous Sur la route claire et belle Saint Georges, guide-nous, Rends-nous fermes et prêts à tout. Ô grand vainqueur, de ton séjour de gloire Assiste-nous, quand ici nous luttons. Conduis nos pas aux routes de victoire ; Jusqu’à la mort s’il faut, nous te suivrons. Saint Georges, guide-nous Sur la route claire et belle Saint Georges, guide-nous, Rends-nous fermes et prêts à tout.
    https://wn.com/Saint_Georges
    Saint George: Great Martyr and Triumphant
    6:57

    Saint George: Great Martyr and Triumphant

    • Order:
    • Duration: 6:57
    • Uploaded Date: 23 Apr 2012
    • views: 101845
    #orthodoxsaints One of our earliest videos is this one on the life of Saint George. Saint George (Greek: Γεώργιος, Geṓrgios; Latin: Georgius; d. 23 April 303[4]) was a Roman soldier of Greek origin and a member of the Praetorian Guard for Roman emperor Diocletian, who was sentenced to death for refusing to recant his Christian faith. He became one of the most venerated saints and megalo-martyrs in Christianity, and was especially venerated by the Crusaders. Orthodox Christians commemorate his feast day on April 23rd. TRISAGION FILMS NEEDS YOUR SUPPORT 1. SUPPORT: If you enjoy our videos, please consider supporting our effort via PayPal or on Patreon. PayPal at - https://www.paypal.com/us/fundraiser/charity/3379869 Patreon at - https://www.patreon.com/trisagionfilms. 2. SUBSCRIBE: To be notified about future videos: https://www.youtube.com/@Trisagionfilms/featured 3. CONNECT: Join the discussion on our other social media channels. Facebook - https://www.facebook.com/TrisagionFilms Instagram - https://www.instagram.com/trisagionfilms Twitter -- https://twitter.com/trisagion_films Website - https://www.trisagionfilms.com 4. CONNECT FOR MORE: Subscribe to any of our Channels: FILMS & DOCUMENTARIES: https://www.youtube.com/@Trisagionfilms/featured LIVE STREAMING: https://www.youtube.com/@TrisagionLivestreams/featured CHILDREN'S VIDEOS: https://www.youtube.com/@TrisagionFilmsforchildre-ou6dj/videos PODCASTS: https://www.youtube.com/c/TrisagionFilmsPodcasts 5. THANK YOU: TrisagionFilms is a non-profit 501(c)3 organization whose mission is to bring the Orthodox faith to all by presenting tangible theology through original videos and articles, all to the glory of God. We cover aspects of Orthodox worship and practice, pilgrimage, the lives of the saints, iconography and the sacred arts, and recordings of homilies, interviews, and special events.
    https://wn.com/Saint_George_Great_Martyr_And_Triumphant
    Saint George and the Dragon
    6:54

    Saint George and the Dragon

    • Order:
    • Duration: 6:54
    • Uploaded Date: 05 Jan 2022
    • views: 43874
    A city's water supply was guarded by a fierce Dragon, and the only way to stop it from attacking citizens was to offer it a Sheep every day. When the city began to lose Sheep, it was decided that a youth would be sacrificed each day, decided by lottery. When the city's beloved princess is chosen as the next sacrifice, all hope seems to be lost...that is until the timely arrival of the valiant Saint George! MYTHOLOGY HAS BEEN TOLD AND RETOLD IN MANY FORMS ACROSS TIME, STORIES AND ACCOUNTS MAY VARY. MUSIC: "Village Consort" "Medieval Action music" Unwind Station "Relaxing Fantasy music" Elysio OPENING: https://www.fiverr.com/saif_edits ARTISTS FEATURED: John Howe Nick Palin John Rackham Earl Norem JK Rooks Trina Shart Hyman REFERENCES: https://sites.pitt.edu/~dash/stgeorge1.html https://americanliterature.com/childrens-stories/st-george-and-the-dragon https://www.stgeorgessociety.org/news/2018/3/30/saint-george-the-man-the-myth-the-legend http://projectbritain.com/stgeorge2.html https://theculturetrip.com/europe/united-kingdom/england/articles/the-story-behind-the-legend-of-saint-george/ If we used your artwork please let us know so we can give proper credit!
    https://wn.com/Saint_George_And_The_Dragon
    Saint George the Greatmartyr and Victorybearer (The Reliquary)
    5:50

    Saint George the Greatmartyr and Victorybearer (The Reliquary)

    • Order:
    • Duration: 5:50
    • Uploaded Date: 06 May 2021
    • views: 14812
    Patreon: https://www.patreon.com/BibleIllustrated Subscribe Star: https://www.subscribestar.com/bible-illustrated Secondary channel: https://www.youtube.com/channel/UC-GsjDllyt641FyyWJVcOpA Bible Illustrated blog: https://bible-illustrated.blogspot.rs/2015/04/the-bible.html Facebook page: https://www.facebook.com/BibleIllustrated Twitter: https://twitter.com/Bibllustrated Instagram: https://www.instagram.com/bibleillustrated Bitcoin donations: 1ezwT9w1AphiY1RSy9hCCCAkYL5PSQSft Subreddit: https://www.reddit.com/r/bibleillustrated/ Sound Editing: Uroš and Mira Nikolić Music: Luka Čubrilo Illustration and Narration: Me (Reader Bojan Teodosijević) A young military commander opposes the religious policy of a seriously unhinged pagan emperor.
    https://wn.com/Saint_George_The_Greatmartyr_And_Victorybearer_(The_Reliquary)
    The head of Saint George slayer of the dragon, is buried HERE- Church of Saint George, Lod (Lydda)
    16:48

    The head of Saint George slayer of the dragon, is buried HERE- Church of Saint George, Lod (Lydda)

    • Order:
    • Duration: 16:48
    • Uploaded Date: 06 Sep 2022
    • views: 127977
    Information about the Church of Saint George, Lod (Lydda) itself will be provided after this announcement. Should you wish to support me and my videos please subscribe to my channel and let me guide you through the Holy Land via my videos. In this way, I will be able to continue to do my work of uploading to YouTube. Upon your request and in return I am very much happy to pray for you at the Western Wall and/or light a candle in your name at the Church of the Holy Sepulchre or anywhere else in the Holy Land of Israel. Should you have a personal request I will be more than happy to respond and even film it in a personal video. Support and purchase of goods from the Holy Land: https://www.buymeacoffee.com/zahishaked Support using PayPal: https://www.paypal.com/paypalme/zahishaked?fbclid=IwAR2RxU5bvJcA5UzxpzC28C480v9towo77GN60VuRZRR02M5Duycmh2UWYcI Kindly share this site with your other friends/family that are interested in the rich and sacred history of Israel. Thank you so much Your tour guide Zahi Shaked https://www.facebook.com/zahishakedisraelitourguide https://www.instagram.com/zahi_shaked_israeli_tour_guide/ https://linktr.ee/zahishakedtourguide?fbclid=IwAR1Xad1mAX7Hzcvp2aXJO-t1q0chntMrdAEXlG0NdT5mFSNQIWmwUOHy8fo Mordecai Ben Jehuda (Mordecai Ben-jehuda) mordibj@gmail.com The monastery is located at Eliyahu Galomb St, Lod, Israel. St. George, the most important soldier-saint in the Christian tradition, was born in Lod (Lydda). His remains are kept in the crypt of the Greek-Orthodox church. The church was first constructed in the Byzantine period, rebuilt by the Crusaders, and rebuilt during the late Ottoman period. St. George church is located in the old section of the modern city of Lod. The church, and the adjacent el-Omari mosque, are located near Khan Hilu - the ruins of a Ottoman period inn. To the east and north of St. George was the location of the ancient city of Lod/Lydda, but few remains were left. The Biblical city was located further to the northeast, on the south bank of Nahal Ayalon stream. The construction of the present building was completed in 1893. It embedded earlier elements of the Crusaders period fortified church, which protected the road from Jaffa to Jerusalem. The Crusader church was built on the ruins of an earlier Byzantine church. The Tomb of St George was the resting place of his Holy Relics however it is now empty as the Holy Relics have been distributed around the world. The Tomb is venerated by both Christians and Muslims. Oil and myrrh are poured on the top as a Tama to the saint and given out as a blessing to pilgrims. There are two sets of iconostasis and alter tables in the church. Relics of St George situated in front of the iconostasis and the photo above are the chains that were used to secure St George in jail. The chains can be taken out of the box and placed on pilgrims as a blessing.
    https://wn.com/The_Head_Of_Saint_George_Slayer_Of_The_Dragon,_Is_Buried_Here_Church_Of_Saint_George,_Lod_(Lydda)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • St George's Day | Religious Studies - Patron Saints | BBC Teach
      4:34
      St George's Day | Religious Studies - Patron Saints | BBC Teachremove from playlist
    • The Story of Saint George
      5:29
      The Story of Saint Georgeremove from playlist
    • The Powerful Meaning of St George | Joseph Campbell and Jonathan Pageau
      10:44
      The Powerful Meaning of St George | Joseph Campbell and Jonathan Pageauremove from playlist
    • Saint George and the Dragon - Into the Maw of Danger - European - Extra Mythology
      7:45
      Saint George and the Dragon - Into the Maw of Danger - European - Extra Mythologyremove from playlist
    • Story of Saint George | English | Story of Saints
      14:06
      Story of Saint George | English | Story of Saintsremove from playlist
    • Saint Georges
      1:35
      Saint Georgesremove from playlist
    • Saint George: Great Martyr and Triumphant
      6:57
      Saint George: Great Martyr and Triumphantremove from playlist
    • Saint George and the Dragon
      6:54
      Saint George and the Dragonremove from playlist
    • Saint George the Greatmartyr and Victorybearer (The Reliquary)
      5:50
      Saint George the Greatmartyr and Victorybearer (The Reliquary)remove from playlist
    • The head of Saint George slayer of the dragon, is buried HERE- Church of Saint George, Lod (Lydda)
      16:48
      The head of Saint George slayer of the dragon, is buried HERE- Church of Saint George, Lod (Lydda)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    St George's Day | Religious Studies - Patron Saints | BBC Teach

    For more episodes and free, supporting teachers' notes: https://www.bbc.co.uk/teach/school-radio/assemblies-ks1-ks2-st-george-georges-day-patron-saint-england/zrwgcmn St George's Day is celebrated throughout England on 23 April. But what do we know about the real St George? This short film is from the series Patron Saints. It is designed to be a classroom resource suitable for teaching Religious Studies at KS1/KS2 in England, Wales and Northern Ireland, and 1st and 2nd Level in Scotland. For more content like this, visit the BBC Teach website. Whether you're at home or at school, you can use BBC Teach for free. Our website is home to thousands of free curriculum-mapped videos, arranged by age-group and subject: https://www.bbc.co.uk/teach Subscribe to the BBC Teach YouTube channel: https://www.youtube.com/bbcteach?sub_confirmation=1 Get in touch via Facebook: https://www.facebook.com/BBCTeach/ Find more resources on BBC Bitesize: https://www.bbc.co.uk/bitesize
    4:34
    St George's Day | Religious Studies - Patron Saints | BBC Teach
    For more episodes and free, supporting teachers' notes: https://www.bbc.co.uk/teach/school...
    published: 01 Feb 2023
    Play in Full Screen
    5:29
    The Story of Saint George
    Happy Saint George’s Day! Here’s to an incredible man of faith, courage, and resolve!
    published: 23 Apr 2021
    Play in Full Screen
    10:44
    The Powerful Meaning of St George | Joseph Campbell and Jonathan Pageau
    Exploring history, myth and meaning in the story of Saint George. A story of huge cultural...
    published: 18 Dec 2021
    Play in Full Screen
    7:45
    Saint George and the Dragon - Into the Maw of Danger - European - Extra Mythology
    Watch Extra Mythology ad-free on Nebula! https://go.nebula.tv/extramythology Once there w...
    published: 20 May 2020
    Play in Full Screen
    14:06
    Story of Saint George | English | Story of Saints
    Watch the amazing story of Saint George Today, Saint George according to legend, was a Ro...
    published: 23 Nov 2017
    Play in Full Screen
    1:35
    Saint Georges
    I dedicate this one to my late father, who taught me dragons often don't live in caves, bu...
    published: 23 Apr 2021
    Play in Full Screen
    6:57
    Saint George: Great Martyr and Triumphant
    #orthodoxsaints One of our earliest videos is this one on the life of Saint George. Saint ...
    published: 23 Apr 2012
    Play in Full Screen
    6:54
    Saint George and the Dragon
    A city's water supply was guarded by a fierce Dragon, and the only way to stop it from att...
    published: 05 Jan 2022
    Play in Full Screen
    5:50
    Saint George the Greatmartyr and Victorybearer (The Reliquary)
    Patreon: https://www.patreon.com/BibleIllustrated Subscribe Star: https://www.subscribest...
    published: 06 May 2021
    Play in Full Screen
    16:48
    The head of Saint George slayer of the dragon, is buried HERE- Church of Saint George, Lod (Lydda)
    Information about the Church of Saint George, Lod (Lydda) itself will be provided after th...
    published: 06 Sep 2022
    Play in Full Screen

    St. George (TTC)

    St. George is a station on the Yonge-University and Bloor-Danforth lines in Toronto, Ontario, Canada. It is located north of Bloor Street West between St. George Street and Bedford Road. This is the second-busiest station, after Bloor-Yonge Station, serving a combined total of approximately 254,940 people a day. Wi-fi service is available at this station.

    Entrances

  • St. George Street entrance is automatic and staffed during rush hours. It is located on the east side of St. George Street just north of Bloor Street West at 43°40′05.75″N 79°23′59.6″W / 43.6682639°N 79.399889°W / 43.6682639; -79.399889
  • Bedford entrance is located on the west side of Bedford Road just north of Bloor Street West at 43°40′07.25″N 79°23′52.4″W / 43.6686806°N 79.397889°W / 43.6686806; -79.397889. Patrons board the 26 Dupont bus from a platform within the station boundaries at this entrance without the need for a paper transfer.
  • History

    The station was first opened on February 28, 1963 for the University section of the Yonge-University line, followed by the Bloor-Danforth line on February 26, 1966, and finally on January 28, 1978 for the Spadina section of the former line.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×