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

Palm Sunday

Palm Sunday is a Christian moveable feast that falls on the Sunday before Easter. The feast commemorates Jesus' triumphal entry into Jerusalem, an event mentioned in each of the four canonical Gospels.

In many Christian denominations, worship services on Palm Sunday include a procession of the faithful carrying palms, representing the palm branches the crowd scattered in front of Jesus as he rode into Jerusalem. The difficulty of procuring palms in unfavorable climates led to their substitution with branches of native trees, including box, yew, willow, and olive. The Sunday was often named after these substitute trees, as in Yew Sunday, or by the general term Branch Sunday.

Biblical basis and symbolism

In the accounts of the four canonical Gospels, Jesus' triumphal entry into Jerusalem takes place about a week before his Resurrection.

The symbolism is captured in Zechariah 9:9 "The Coming of Zion's King – See, your king comes to you, righteous and victorious, lowly and riding on a donkey, on a colt, the foal of a donkey". It suggests that Jesus was declaring he was the King of Israel to the anger of the Sanhedrin.

Palm Sunday (book)

Palm Sunday is a 1981 collection of short stories, speeches, essays, letters, and other previously unpublished works by author Kurt Vonnegut Jr.

Contents

In addition to original material, Palm Sunday contains the following works (written by Vonnegut unless otherwise stated):

  • "Dear Mr. McCarthy" (letter)
  • "Un-American Nonsense" (essay)
  • "God's Law" (speech)
  • "Dear Felix" (letter)
  • "An Account of the Ancestry of Kurt Vonnegut, Jr, by an Ancient Friend of His Family" (formal essay by John G. Raunch)
  • "What I Liked About Cornell" (speech)
  • "When I Lost My Innocence" (essay)
  • "I Am Embarrassed" (speech)
  • "How to Write with Style" (essay)
  • Self-interview from The Paris Review
  • "Who in America is Truly Happy?" (essay)
  • "Something Happened" (review of Joseph Heller's novel)
  • "The Rocky Graziano of American Letters" (speech)
  • "The Best of Bob and Ray" (Vonnegut's introduction to a book by Bob Elliott and Ray Goulding)
  • "James T. Farrell" (funeral speech)
  • "Lavina Lyon" (funeral speech)
  • "The Class of '57" (song lyric by Don and Harold Reid of the Statler Brothers)
  • Sunday

    Sunday (i/ˈsʌnd/ or /ˈsʌndi/) is the day of the week following Saturday but before Monday. For most Christians, Sunday is observed as a day of worship and rest, holding it as the Lord's Day and the day of Christ's resurrection. Sunday is a day of rest in most Western countries, part of 'the weekend'. In some Muslim countries and Israel, Sunday is the first work day of the week. According to the Hebrew calendars and traditional Christian calendars, Sunday is the first day of the week, and according to the International Organization for Standardization ISO 8601 Sunday is the seventh and last day of the week. No century in the Gregorian calendar starts on a Sunday, whether its first year is considered to be '00 or '01. The Jewish New Year never falls on a Sunday. (The rules of the Hebrew calendar are designed such that the first day of Rosh Hashanah will never occur on the first, fourth, or sixth day of the Jewish week; i.e., Sunday, Wednesday, or Friday).

    Etymology

    Sunday, being the day of the Sun, as the name of the first day of the week, is derived from Hellenistic astrology, where the seven planets, known in English as Saturn, Jupiter, Mars, the Sun, Venus, Mercury and the Moon, each had an hour of the day assigned to them, and the planet which was regent during the first hour of any day of the week gave its name to that day. During the 1st and 2nd century, the week of seven days was introduced into Rome from Egypt, and the Roman names of the planets were given to each successive day.

    Stargate Atlantis (season 3)

    The third season of Stargate Atlantis, an American-Canadian television series, began airing on July 21, 2006 on the US-American Sci Fi Channel. The third season concluded after 20 episodes on February 5, 2007 on the Canadian The Movie Network. The series was developed by Brad Wright and Robert C. Cooper, who also served as executive producers. Season three regular cast members include Joe Flanigan, Torri Higginson, Jason Momoa, Rachel Luttrell, Paul McGillion, and David Hewlett as Dr. Rodney McKay.

    Cast

  • Joe Flanigan as Lt. Col. John Sheppard
  • Torri Higginson as Dr. Elizabeth Weir
  • Rachel Luttrell as Teyla Emmagan
  • Jason Momoa as Ronon Dex
  • Paul McGillion as Dr. Carson Beckett
  • David Hewlett as Dr. Rodney McKay
  • Episodes

    Production

  • Richard Kind, who played Lucius Lavin in "Irresistible" and "Irresponsible", also played a minor role as Gary Meyers in the original Stargate film. He is the only actor to appear in both the film and Stargate: Atlantis.
  • "Common Ground" introduces the "Todd" Wraith character that plays an important role in the later Seasons.
  • Sunday (Australian TV program)

    Sunday was an Australian current affairs, arts and politics program, broadcast nationally on Sunday mornings on the Nine Network Australia. The program covered a range of topical issues including local and overseas news, politics, and in-depth stories on Australia and the world, plus independent film reviews, independent arts features, and independent music reviews. Its final show was aired on Sunday, 3 August 2008.

    History

    The announcement of the launch of the private and independent breakfast television and Canberra-produced politics program on 22 October 1981 inspired controversy, as it was then practice to fill the spot with religious programming. The advent and ongoing success of Sunday was a significant milestone in Australian television, as it for the first time offered a credible alternative/rival to the dominant influence of the ABC's flagship current affairs program Four Corners, which had premiered 20 years earlier. Sunday was often referred to as the "baby" of network boss Kerry Packer, although rival media outlets have characterised it as "an expensive indulgence".

    Podcasts:

    • Jesus and Palm Sunday l God's Story

      On Palm Sunday, we remember the time Jesus entered Jerusalem--and everybody started praising him! This was even prophesied many years before in Zechariah 9:9. You can read about Palm Sunday in Matthew 21:1-11, Mark 11:1-11, Luke 19:28-44, and John 12:12-19. Check out more videos (and other cool stuff) at http://crossroadskidsclub.net/ There's all kinds of cool stuff on the Kids' Club channel for you to explore and we’re always updating with brand new content. Subscribe and stick around so you never miss out on new and exciting videos that the whole family can enjoy. And be sure to like and comment as well! We’d love to hear from you.

      published: 13 Mar 2019
    • Jesus Rides a Donkey on Palm Sunday | The Life of Jesus | #30

      The Life of Jesus: Jesus Rides a Donkey on Palm Sunday. This is the beginning of the story of Jesus's Crucifixion and how he saved all of mankind! What will happen to Jesus and his disciples!? Do you want to read more? ▶︎ https://bit.ly/3EVJycV Do you want to read the devotional? ► https://bit.ly/3uw24E1 Get to know Jesus personally! ► https://jesus.net/c/jesus-and-i/ Watch more videos ► https://goo.gl/hU61PS Join us. Subscribe now! ► https://goo.gl/cAIya1 Bible Text Chapter 12 0:00-00:05 verse 12 00:06-00:19 verse 13 00:20-00:24 verse 14 00:25-00:42 verse 15 00:43-01:03 verse 16 01:04-01:12 verse 17 01:13-01:19 verse 18 01:20-01:36 verse 19 01:37-01:36 verse 20 01:45-01:53 verse 21 01:54-02:11 verse 22 02:12-02:17 verse 23 02:18-02:44 verse 24 02:45-02:55 verse 25 02:56-03:18 v...

      published: 12 Mar 2017
    • The Significance of Palm Sunday | Easter

      The Significance of Palm Sunday marked the beginning of the most important event on Earth. Elder Ronald A. Rasband, a member of the Quorum of the Twelve Apostles shares his testimony of Jesus Christ's final week of His mortal ministry. Nearly 2,000 years ago, Palm Sunday marked the beginning of the last week of the mortal ministry of Jesus Christ. It was the most important week in human history. What began with the heralding of Jesus as the promised Messiah in His triumphant entry into Jerusalem closed with His Crucifixion and Resurrection. By divine design, His atoning sacrifice concluded His mortal ministry, making it possible for us to live with our Heavenly Father for eternity. Scriptures tell us that the week began with throngs standing at the gates of the city to see “Jesus the prop...

      published: 22 Mar 2024
    • The Story of Palm Sunday | Bible Stories for Kids

      ✝️ Get a FREE Minno Laugh and Grow Bible for Kids downloadable: http://www.minno.io/youtube ▶️ Stream these videos and more on the Minno Kids app: http://www.minno.io/youtube 📱 Available on iPhone, iPad, Apple TV, Android, Roku, Apple TV, and Amazon Fire TV and tablets: http://www.minno.io/youtube 🙏 Nearly 3,000 ad-free, worry-free, faith-based shows for kids! ⭐️ Subscribe on YT: https://minno.io/subscribeminnokids

      published: 15 Feb 2024
    • The Orthodox Band Escorting the Patriarch on Palm Sunday

      Please consider joining our patreon where we have full audio books or making a donation to our monastery to continue these translations: https://www.patreon.com/nunchristina https://www.oceanitissa.com.au/donations www.oceanitissa.com.au

      published: 17 Apr 2022
    • Palm Sunday 1965 - The Forgotten Super Outbreak

      April 11th, 1965. Its a beautiful sunny afternoon across northern Indiana and residents all across the state are beginning to venture outdoors to enjoy the pleasant spring weather after a long and brutal winter. None of them could have imagined that in just a few short hours they would be at the center of one of the worst tornado outbreaks in American history. On April 11th, 1965, a catastrophic tornado outbreak would devastate the midwestern states of Iowa, Wisconsin, Illinois, Indiana, Michigan, and Ohio, producing over 50 tornadoes and claiming the lives of 266 people, causing apocalyptic levels of destruction matched only by the 1925 Tri-state tornado and the 1974 and 2011 Super Outbreaks. In this video we will discuss the fascinating meteorology that caused this devastating and ofte...

      published: 11 May 2024
    • Hosanna - Palm Sunday (2021)

      #SaddlebackChurch #SaddlebackWorship #Hosanna Performed by: Saddleback Worship Subscribe to the Saddleback Worship Channel: https://saddlebackworship.com/youtubesubscribe Stay connected with us! https://www.instagram.com/saddlebackworship https://www.facebook.com/sbworship/ https://twitter.com/svccworship Hosanna By: Kirk Franklin © 2002 Kerrion Publishing (Admin. By Brentwood-Benson Music Publishing, Inc.) Lilly Mack Music (Admin. By EMI Christian Music Publishing) CCLI License #42373, CCLI Song #3445341

      published: 31 Mar 2021
    • Greek-Orthodox Patriarch of Jerusalem leads Orthodox Palm Sunday procession

      The Greek-Orthodox Patriarch of Jerusalem Theophilos III and other clergy celebrated Palm Sunday with a procession leading into the Church of the Holy Sepulchre, where Jesus is believed to be buried. Fewer pilgrims attended this year due to the war in Gaza. (AP Video by Alon Bernstein) #jerusalem #palmsunday #church Subscribe: http://smarturl.it/AssociatedPress Read more: https://apnews.com​ This video may be available for archive licensing via https://newsroom.ap.org/home

      published: 28 Apr 2024
    • Palm Sunday Project // Meeting Mama Linda

      Today we meet another member who will join us in this documentary, Mama Linda. She shares how her story is connected to the day an F-4 tornado ripped through the Goshen United Methodist Church on Palm Sunday, killing 20 people. Join us on the journey to find answers on how important it is to find mental healing after traumatic experiences. #trauma #emdr #mentalhealth #tornado #tornadosurvivor

      published: 16 Sep 2024
    • Palm Sunday HD

      Holy Day of Obligation Palm Sunday is the final Sunday of Lent, the beginning of Holy Week, and commemorates the triumphant arrival of Christ in Jerusalem, days before he was crucified. Palm Sunday is known as such because the faithful will often receive palm fronds which they use to participate in the reenactment of Christ's arrival in Jerusalem. In the Gospels, Jesus entered Jerusalem riding a young donkey, and to the lavish praise of the townspeople who threw clothes, or possibly palms or small branches, in front of him as a sign of homage. This was a customary practice for people of great respect. Palm branches are widely recognized symbol of peace and victory, hence their preferred use on Palm Sunday. The use of a donkey instead of a horse is highly symbolic, it represents the hum...

      published: 31 Mar 2021
    Jesus and Palm Sunday l God's Story
    2:48

    Jesus and Palm Sunday l God's Story

    • Order:
    • Duration: 2:48
    • Uploaded Date: 13 Mar 2019
    • views: 1180973
    On Palm Sunday, we remember the time Jesus entered Jerusalem--and everybody started praising him! This was even prophesied many years before in Zechariah 9:9. You can read about Palm Sunday in Matthew 21:1-11, Mark 11:1-11, Luke 19:28-44, and John 12:12-19. Check out more videos (and other cool stuff) at http://crossroadskidsclub.net/ There's all kinds of cool stuff on the Kids' Club channel for you to explore and we’re always updating with brand new content. Subscribe and stick around so you never miss out on new and exciting videos that the whole family can enjoy. And be sure to like and comment as well! We’d love to hear from you.
    https://wn.com/Jesus_And_Palm_Sunday_L_God's_Story
    Jesus Rides a Donkey on Palm Sunday | The Life of Jesus | #30
    5:24

    Jesus Rides a Donkey on Palm Sunday | The Life of Jesus | #30

    • Order:
    • Duration: 5:24
    • Uploaded Date: 12 Mar 2017
    • views: 263217
    The Life of Jesus: Jesus Rides a Donkey on Palm Sunday. This is the beginning of the story of Jesus's Crucifixion and how he saved all of mankind! What will happen to Jesus and his disciples!? Do you want to read more? ▶︎ https://bit.ly/3EVJycV Do you want to read the devotional? ► https://bit.ly/3uw24E1 Get to know Jesus personally! ► https://jesus.net/c/jesus-and-i/ Watch more videos ► https://goo.gl/hU61PS Join us. Subscribe now! ► https://goo.gl/cAIya1 Bible Text Chapter 12 0:00-00:05 verse 12 00:06-00:19 verse 13 00:20-00:24 verse 14 00:25-00:42 verse 15 00:43-01:03 verse 16 01:04-01:12 verse 17 01:13-01:19 verse 18 01:20-01:36 verse 19 01:37-01:36 verse 20 01:45-01:53 verse 21 01:54-02:11 verse 22 02:12-02:17 verse 23 02:18-02:44 verse 24 02:45-02:55 verse 25 02:56-03:18 verse 26 03:19-03:51 verse 27 03:52-04:07 verse 28 04:08-04:17 verse 29 04:18-04:21 verse 30 04:22-04:27 verse 31 04:28-04:32 verse 32 04:33-04:37 verse 33 04:38-04:46 verse 34 04:47-05:14 verse 35 05:15-05:24 verse 36 #Gospel #Jesus #hope #meaningoflife #christmas #goodfriday #easter #Movie #doubt #goodperson #Healing #Peace #Connection #Freedom #Identity #thebible #bible #visualbible #biblemovies #fullmovies #bibleproject #biblereadingaudio#god #jesus #JesusChrist #Christianity #Christianityhistory
    https://wn.com/Jesus_Rides_A_Donkey_On_Palm_Sunday_|_The_Life_Of_Jesus_|_30
    The Significance of Palm Sunday | Easter
    1:51

    The Significance of Palm Sunday | Easter

    • Order:
    • Duration: 1:51
    • Uploaded Date: 22 Mar 2024
    • views: 249899
    The Significance of Palm Sunday marked the beginning of the most important event on Earth. Elder Ronald A. Rasband, a member of the Quorum of the Twelve Apostles shares his testimony of Jesus Christ's final week of His mortal ministry. Nearly 2,000 years ago, Palm Sunday marked the beginning of the last week of the mortal ministry of Jesus Christ. It was the most important week in human history. What began with the heralding of Jesus as the promised Messiah in His triumphant entry into Jerusalem closed with His Crucifixion and Resurrection. By divine design, His atoning sacrifice concluded His mortal ministry, making it possible for us to live with our Heavenly Father for eternity. Scriptures tell us that the week began with throngs standing at the gates of the city to see “Jesus the prophet of Nazareth of Galilee.” They “took branches of palm trees, and went forth to meet him, and cried: Hosanna: Blessed is the King of Israel that cometh in the name of the Lord.” Though we do not stand at the gates of Jerusalem today with palms in our hands, the time will come when, as prophesied in Revelation, “a great multitude, which no man could number, of all nations, and kindreds, and people, and tongues, [will stand] before the throne, and before the Lamb, clothed with white robes, and palms in their hands.” I leave with you my blessing as an Apostle of Jesus Christ that you will diligently strive to live righteously and be among those who, with palms in their hands, will herald the Son of God, the great Redeemer of us all. #BecauseofHim ▶︎ SUBSCRIBE to The Church of Jesus Christ of Latter-day Saints for the latest videos: http://bit.ly/1M0iPwY 🔔 Turn on notifications to stay updated with new uploads! ▶︎ The Church of Jesus Christ Instagram: https://www.instagram.com/ChurchOfJesusChrist/ ▶︎ The Church of Jesus Christ Facebook: https://www.facebook.com/churchofjesuschrist ▶︎ The Church of Jesus Christ Twitter: https://twitter.com/ch_jesuschrist?lang=en Visit us on our WEBSITE: https://www.churchofjesuschrist.org
    https://wn.com/The_Significance_Of_Palm_Sunday_|_Easter
    The Story of Palm Sunday | Bible Stories for Kids
    4:15

    The Story of Palm Sunday | Bible Stories for Kids

    • Order:
    • Duration: 4:15
    • Uploaded Date: 15 Feb 2024
    • views: 115844
    ✝️ Get a FREE Minno Laugh and Grow Bible for Kids downloadable: http://www.minno.io/youtube ▶️ Stream these videos and more on the Minno Kids app: http://www.minno.io/youtube 📱 Available on iPhone, iPad, Apple TV, Android, Roku, Apple TV, and Amazon Fire TV and tablets: http://www.minno.io/youtube 🙏 Nearly 3,000 ad-free, worry-free, faith-based shows for kids! ⭐️ Subscribe on YT: https://minno.io/subscribeminnokids
    https://wn.com/The_Story_Of_Palm_Sunday_|_Bible_Stories_For_Kids
    The Orthodox Band Escorting the Patriarch on Palm Sunday
    6:13

    The Orthodox Band Escorting the Patriarch on Palm Sunday

    • Order:
    • Duration: 6:13
    • Uploaded Date: 17 Apr 2022
    • views: 622218
    Please consider joining our patreon where we have full audio books or making a donation to our monastery to continue these translations: https://www.patreon.com/nunchristina https://www.oceanitissa.com.au/donations www.oceanitissa.com.au
    https://wn.com/The_Orthodox_Band_Escorting_The_Patriarch_On_Palm_Sunday
    Palm Sunday 1965 - The Forgotten Super Outbreak
    21:51

    Palm Sunday 1965 - The Forgotten Super Outbreak

    • Order:
    • Duration: 21:51
    • Uploaded Date: 11 May 2024
    • views: 2078037
    April 11th, 1965. Its a beautiful sunny afternoon across northern Indiana and residents all across the state are beginning to venture outdoors to enjoy the pleasant spring weather after a long and brutal winter. None of them could have imagined that in just a few short hours they would be at the center of one of the worst tornado outbreaks in American history. On April 11th, 1965, a catastrophic tornado outbreak would devastate the midwestern states of Iowa, Wisconsin, Illinois, Indiana, Michigan, and Ohio, producing over 50 tornadoes and claiming the lives of 266 people, causing apocalyptic levels of destruction matched only by the 1925 Tri-state tornado and the 1974 and 2011 Super Outbreaks. In this video we will discuss the fascinating meteorology that caused this devastating and often overlooked tornado outbreak, the people it impacted, and the scientific breakthroughs that happened in its aftermath. This is the true story of the 1965 Palm Sunday Tornadoes: The Forgotten Super Outbreak. F Scale explanations: F0 Light Damage (40-72mph) F1 Moderate Damage (73-112mph) F2 Significant Damage (113-157mph) F3 Severe Damage (158-206mph) F4 Devastating Damage (207-260mph) F5 Incredible Damage (261-318mph) Twitter: https://twitter.com/CeltonHenderson Want to support what I do? This is the best place to do so: Patreon: https://www.patreon.com/celtonhenderson Download the KMZ file I made for this tornado outbreak here: https://drive.google.com/file/d/1Gk0gZV9i9ff0ffwBAsfL-neGX7_0r-ZY/view?usp=sharing Sources: https://journals.ametsoc.org/view/journals/mwre/98/1/1520-0493_1970_098_0029_pstoa_2_3_co_2.xml https://web.archive.org/web/20190724053210/http://www.islandnet.com/~see/weather/events/1965palmsun_torn.htm https://www.weather.gov/iwx/1965_palmsunday_50 https://www.weather.gov/lot/Palm_Sunday_Outbreak https://www.weather.gov/grr/1965PalmSundayTornado https://tornadoarchive.com/home/ https://youtu.be/yeb2nMo64t8?si=8fhH4z3H7smv1I7j https://youtu.be/40x6PSviQRA?si=q5_xDmOASXUyvxci https://swco-ir.tdl.org/collections/6b918460-3fac-4f95-a51f-84dc8e625306 https://www.weather.gov/ind/palmsuntor https://www.kpcnews.com/news/latest/newssun/article_432033d2-9908-5693-ad1c-f481821c2626.html https://stormstalker.wordpress.com/2013/01/05/1965-palm-sunday/ https://en.wikipedia.org/wiki/1965_Palm_Sunday_tornado_outbreak https://en.wikipedia.org/wiki/List_of_tornadoes_in_the_1965_Palm_Sunday_tornado_outbreak https://palmsundaytornadoes.blogspot.com/ https://www.youtube.com/watch?v=YGrhwlYSWUU&t=2s All non-licensed clips used for fair use commentary, criticism, and educational purposes. See Hosseinzadeh v. Klein, 276 F.Supp.3d 34 (S.D.N.Y. 2017); Equals Three, LLC v. Jukin Media, Inc., 139 F. Supp. 3d 1094 (C.D. Cal. 2015). Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS
    https://wn.com/Palm_Sunday_1965_The_Forgotten_Super_Outbreak
    Hosanna - Palm Sunday (2021)
    3:34

    Hosanna - Palm Sunday (2021)

    • Order:
    • Duration: 3:34
    • Uploaded Date: 31 Mar 2021
    • views: 509306
    #SaddlebackChurch #SaddlebackWorship #Hosanna Performed by: Saddleback Worship Subscribe to the Saddleback Worship Channel: https://saddlebackworship.com/youtubesubscribe Stay connected with us! https://www.instagram.com/saddlebackworship https://www.facebook.com/sbworship/ https://twitter.com/svccworship Hosanna By: Kirk Franklin © 2002 Kerrion Publishing (Admin. By Brentwood-Benson Music Publishing, Inc.) Lilly Mack Music (Admin. By EMI Christian Music Publishing) CCLI License #42373, CCLI Song #3445341
    https://wn.com/Hosanna_Palm_Sunday_(2021)
    Greek-Orthodox Patriarch of Jerusalem leads Orthodox Palm Sunday procession
    1:01

    Greek-Orthodox Patriarch of Jerusalem leads Orthodox Palm Sunday procession

    • Order:
    • Duration: 1:01
    • Uploaded Date: 28 Apr 2024
    • views: 55626
    The Greek-Orthodox Patriarch of Jerusalem Theophilos III and other clergy celebrated Palm Sunday with a procession leading into the Church of the Holy Sepulchre, where Jesus is believed to be buried. Fewer pilgrims attended this year due to the war in Gaza. (AP Video by Alon Bernstein) #jerusalem #palmsunday #church Subscribe: http://smarturl.it/AssociatedPress Read more: https://apnews.com​ This video may be available for archive licensing via https://newsroom.ap.org/home
    https://wn.com/Greek_Orthodox_Patriarch_Of_Jerusalem_Leads_Orthodox_Palm_Sunday_Procession
    Palm Sunday Project // Meeting Mama Linda
    4:01

    Palm Sunday Project // Meeting Mama Linda

    • Order:
    • Duration: 4:01
    • Uploaded Date: 16 Sep 2024
    • views: 6
    Today we meet another member who will join us in this documentary, Mama Linda. She shares how her story is connected to the day an F-4 tornado ripped through the Goshen United Methodist Church on Palm Sunday, killing 20 people. Join us on the journey to find answers on how important it is to find mental healing after traumatic experiences. #trauma #emdr #mentalhealth #tornado #tornadosurvivor
    https://wn.com/Palm_Sunday_Project_Meeting_Mama_Linda
    Palm Sunday HD
    2:24

    Palm Sunday HD

    • Order:
    • Duration: 2:24
    • Uploaded Date: 31 Mar 2021
    • views: 92917
    Holy Day of Obligation Palm Sunday is the final Sunday of Lent, the beginning of Holy Week, and commemorates the triumphant arrival of Christ in Jerusalem, days before he was crucified. Palm Sunday is known as such because the faithful will often receive palm fronds which they use to participate in the reenactment of Christ's arrival in Jerusalem. In the Gospels, Jesus entered Jerusalem riding a young donkey, and to the lavish praise of the townspeople who threw clothes, or possibly palms or small branches, in front of him as a sign of homage. This was a customary practice for people of great respect. Palm branches are widely recognized symbol of peace and victory, hence their preferred use on Palm Sunday. The use of a donkey instead of a horse is highly symbolic, it represents the humble arrival of someone in peace, as opposed to arriving on a steed in war. A week later, Christ would rise from the dead on the first Easter. During Palm Sunday Mass, palms are distributed to parishioners who carry them in a ritual procession into church. The palms are blessed and many people will fashion them into small crosses or other items of personal devotion. These may be returned to the church, or kept for the year. Because the palms are blessed, they may not be discarded as trash. Instead, they are appropriately gathered at the church and incinerated to create the ashes that will be used in the follow year's Ash Wednesday observance. The colors of the Mass on Palm Sunday are red and white, symbolizing the redemption in blood that Christ paid for the world. Support Catholic Online by Subscribing to our Channel: https://www.youtube.com/c/catholiconlinemedia?sub_confirmation=1 Learn more about Palm Sunday: http://www.catholic.org/clife/lent/palmsunday.php Catholic Online School: Free World Class Catholic Education for Anyone, Anywhere https://www.catholiconline.school/ Catholic Online: World's Catholic Library https://www.catholic.org/ Catholic Online Shopping: World's Catholic Store https://catholiconline.shopping/ Catholic Online Learning Resources: Free Printable Educational Resources for Students, Parents, and Teachers https://catholicresources.education/ We ask you, humbly: don't scroll away. Hi readers, it seems you use Catholic Online a lot; that's great! It's a little awkward to ask, but we need your help. If you have already donated, we sincerely thank you. We're not salespeople, but we depend on donations averaging $14.76 and fewer than 1% of viewers give. If you donate just $5.00, the price of your coffee, Catholic Online School could keep thriving. Thank you. https://ycvf.org/products/donate
    https://wn.com/Palm_Sunday_Hd
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Jesus and Palm Sunday l God's Story
      2:48
      Jesus and Palm Sunday l God's Storyremove from playlist
    • Jesus Rides a Donkey on Palm Sunday | The Life of Jesus | #30
      5:24
      Jesus Rides a Donkey on Palm Sunday | The Life of Jesus | #30remove from playlist
    • The Significance of Palm Sunday | Easter
      1:51
      The Significance of Palm Sunday | Easterremove from playlist
    • The Story of Palm Sunday | Bible Stories for Kids
      4:15
      The Story of Palm Sunday | Bible Stories for Kidsremove from playlist
    • The Orthodox Band Escorting the Patriarch on Palm Sunday
      6:13
      The Orthodox Band Escorting the Patriarch on Palm Sundayremove from playlist
    • Palm Sunday 1965 - The Forgotten Super Outbreak
      21:51
      Palm Sunday 1965 - The Forgotten Super Outbreakremove from playlist
    • Hosanna - Palm Sunday (2021)
      3:34
      Hosanna - Palm Sunday (2021)remove from playlist
    • Greek-Orthodox Patriarch of Jerusalem leads Orthodox Palm Sunday procession
      1:01
      Greek-Orthodox Patriarch of Jerusalem leads Orthodox Palm Sunday processionremove from playlist
    • Palm Sunday Project // Meeting Mama Linda
      4:01
      Palm Sunday Project // Meeting Mama Lindaremove from playlist
    • Palm Sunday HD
      2:24
      Palm Sunday HDremove from playlist
    PLAYLIST TIME: 0:00 / 53:22

    Jesus and Palm Sunday l God's Story

    On Palm Sunday, we remember the time Jesus entered Jerusalem--and everybody started praising him! This was even prophesied many years before in Zechariah 9:9. You can read about Palm Sunday in Matthew 21:1-11, Mark 11:1-11, Luke 19:28-44, and John 12:12-19. Check out more videos (and other cool stuff) at http://crossroadskidsclub.net/ There's all kinds of cool stuff on the Kids' Club channel for you to explore and we’re always updating with brand new content. Subscribe and stick around so you never miss out on new and exciting videos that the whole family can enjoy. And be sure to like and comment as well! We’d love to hear from you.
    2:48
    Jesus and Palm Sunday l God's Story
    On Palm Sunday, we remember the time Jesus entered Jerusalem--and everybody started praisi...
    published: 13 Mar 2019
    Play in Full Screen
    5:24
    Jesus Rides a Donkey on Palm Sunday | The Life of Jesus | #30
    The Life of Jesus: Jesus Rides a Donkey on Palm Sunday. This is the beginning of the story...
    published: 12 Mar 2017
    Play in Full Screen
    1:51
    The Significance of Palm Sunday | Easter
    The Significance of Palm Sunday marked the beginning of the most important event on Earth....
    published: 22 Mar 2024
    Play in Full Screen
    4:15
    The Story of Palm Sunday | Bible Stories for Kids
    ✝️ Get a FREE Minno Laugh and Grow Bible for Kids downloadable: http://www.minno.io/youtub...
    published: 15 Feb 2024
    Play in Full Screen
    6:13
    The Orthodox Band Escorting the Patriarch on Palm Sunday
    Please consider joining our patreon where we have full audio books or making a donation to...
    published: 17 Apr 2022
    Play in Full Screen
    21:51
    Palm Sunday 1965 - The Forgotten Super Outbreak
    April 11th, 1965. Its a beautiful sunny afternoon across northern Indiana and residents a...
    published: 11 May 2024
    Play in Full Screen
    3:34
    Hosanna - Palm Sunday (2021)
    #SaddlebackChurch #SaddlebackWorship #Hosanna Performed by: Saddleback Worship Subscribe...
    published: 31 Mar 2021
    Play in Full Screen
    1:01
    Greek-Orthodox Patriarch of Jerusalem leads Orthodox Palm Sunday procession
    The Greek-Orthodox Patriarch of Jerusalem Theophilos III and other clergy celebrated Palm ...
    published: 28 Apr 2024
    Play in Full Screen
    4:01
    Palm Sunday Project // Meeting Mama Linda
    Today we meet another member who will join us in this documentary, Mama Linda. She shares ...
    published: 16 Sep 2024
    Play in Full Screen
    2:24
    Palm Sunday HD
    Holy Day of Obligation Palm Sunday is the final Sunday of Lent, the beginning of Holy Wee...
    published: 31 Mar 2021
    Play in Full Screen

    Palm Sunday

    Palm Sunday is a Christian moveable feast that falls on the Sunday before Easter. The feast commemorates Jesus' triumphal entry into Jerusalem, an event mentioned in each of the four canonical Gospels.

    In many Christian denominations, worship services on Palm Sunday include a procession of the faithful carrying palms, representing the palm branches the crowd scattered in front of Jesus as he rode into Jerusalem. The difficulty of procuring palms in unfavorable climates led to their substitution with branches of native trees, including box, yew, willow, and olive. The Sunday was often named after these substitute trees, as in Yew Sunday, or by the general term Branch Sunday.

    Biblical basis and symbolism

    In the accounts of the four canonical Gospels, Jesus' triumphal entry into Jerusalem takes place about a week before his Resurrection.

    The symbolism is captured in Zechariah 9:9 "The Coming of Zion's King – See, your king comes to you, righteous and victorious, lowly and riding on a donkey, on a colt, the foal of a donkey". It suggests that Jesus was declaring he was the King of Israel to the anger of the Sanhedrin.

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

    Latest News for: palm sunday

    Edit

    Pope Francis: The Reformist Who Divided Opinion

    Malaysian National News Agency 22 Apr 2025
    Pope Francis greets cardinals as he unexpectedly appears during the Palm Sunday Mass in Saint Peter's Square at the Vatican, April 13, 2025 ... ....
    Edit

    Pope Francis pushed himself knowing he ‘did not have long left’

    Manila Standard 22 Apr 2025
    Happy Sunday everyone ... To mark the start of the Easter Holy Week, he appeared on April 13 for Palm Sunday mass, where, from his wheelchair pushed around St Peter’s Square, he shook hands and offered sweets to children.
    Edit

    Pope pushed himself knowing he ‘did not have long left’—Vatican source

    Manila Standard 22 Apr 2025
    Happy Sunday everyone ... To mark the start of the Easter Holy Week, he appeared on April 13 for Palm Sunday mass, where, from his wheelchair pushed around St Peter’s Square, he shook hands and offered sweets to children.
    Edit

    Does Zelensky Want Peace or War?

    Antiwar 22 Apr 2025
    Ukrainian and European officials have stated that the missile strike was a deliberate attack on civilians who going to church on Palm Sunday.
    Edit

    After the Pope’s death, Catholics mourn lost voice for the dispossessed

    NewstalkZB 22 Apr 2025
    Pope Francis greets faithful at the end of Palm Sunday Mass at St Peter's Square at the Vatican in Vatican City, Vatican ... where Francis normally delivered his Sunday Angelus prayers from the balcony.
    Edit

    Valencia Hills sees record crowds at annual Easter Carnival event

    The Signal 21 Apr 2025
    Hosanna,” derived from a Hebrew phrase that essentially means “save us,” is what the crowd in Jerusalem, who were waving palm branches, shouted out to Jesus as he rode into the city on a donkey during Palm Sunday.
    Edit

    Pope dies: Francis had met with Vice President JD Vance on Easter morning

    The Palm Beach Post 21 Apr 2025
    Palm Sunday marks start of Holy Week. Pope Francis on Sunday briefly greeted thousands of people gathered in St. Peter's Square to celebrate Palm Sunday.
    Edit

    Protection of Christian holidays in Syria: Relief amid security presence

    Enab Baladi 21 Apr 2025
    The security deployment surrounding the churches in various Syrian provinces, particularly in Damascus, on Palm Sunday reassured Christians to conduct their prayers and religious rituals naturally, as they have been accustomed to in the past.
    Edit

    Boca Farmers Market coming west of Boca Raton

    WPTV 21 Apr 2025
    PALM BEACH COUNTY, Fla. — Starting Sunday, April 27, residents of Boca Raton will have a new destination to celebrate fresh produce and support local businesses ... This exciting weekly market will take place every Sunday from 9 a.m ... .
    Edit

    Boca Bash 2025: 5 things to know about party on Lake Boca - Boating, booze and bikinis

    The Palm Beach Post 21 Apr 2025
    West Palm Beach's Francis Roselin had gone missing the Sunday afternoon of the event, and another swimmer noticed him at the bottom of a shallow part of the Intracoastal Waterway at about 5 p.m.
    Edit

    Trump Vows to Make America ‘More Religious’ in Vitriolic Easter Rant

    New York Magazine 21 Apr 2025
    This Easter, the White House tried to show that President Trump is making good on his campaign promise to “bring back Christianity.” Trump kicked things off with a Palm Sunday statement saying, “This ...
    Edit

    Over 1.17 million passengers served at 'much better' NAIA during Holy Week

    Manila Bulletin 21 Apr 2025
    (NNIC), the private operator of NAIA, said more than 1.17 million passengers traveled through NAIA from Palm Sunday, April 13, to Easter Sunday, April 20.
    Edit

    The Latest: Pope Francis dies at age 88

    Newsday 21 Apr 2025
    Vice President JD Vance, who is in India and had met Pope Francis on Easter Sunday, said his “heart goes out to the millions of Christians all over the world who loved him” ... Pope Francis arrives at the end of the mass on Palm Sunday in St.
    ×