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

Podcasts:

  • Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023

    Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023 Welcome to my video showcasing the top tourist attractions in Thessaloniki, Greece. Thessaloniki is a vibrant and historic city located on the Aegean Sea, renowned for its rich cultural heritage, stunning architecture, and scenic beauty. In this video, we'll take a closer look at some of the city's most iconic landmarks and must-see attractions, including the Arch of Galerius, the White Tower, the ancient ruins of the Roman Forum, and much more. Join me on a journey through the fascinating history and culture of Thessaloniki, as we explore the city's top tourist attractions and discover why it's a destination not to be missed. So sit back, relax, and enjoy this virtual tour of Thessaloniki, Greece. ...

    published: 12 Apr 2023
  • Thessaloniki Greece: 13 BEST Things To Do In 2024 (Travel Guide)

    Thessaloniki, Greece's vibrant northern city, is renowned for its rich history and cultural diversity. Landmarks like the White Tower and Rotunda reflect its Byzantine and Ottoman past. With bustling markets, lively nightlife, and a thriving arts scene, Thessaloniki seamlessly blends ancient heritage with contemporary urban life. Contact us via email: ytmediabrands@gmail.com #travelscout

    published: 03 Jul 2024
  • Thessaloniki Travel Guide 2025 - Best Places to Visit in Thessaloniki Greece in 2025

    Thessaloniki Travel Guide 2025 - Best Places to Visit in Thessaloniki Greece in 2025 Thessaloniki is a Greek port city on the Thermaic Gulf of the Aegean Sea. Evidence of Roman, Byzantine and Ottoman history remains, especially around Ano Poli, the upper town. The ruins of Roman Emperor Galerius’ 4th-century palace include the Rotunda that has been both a church and a mosque. Much of the city center was destroyed in the Great Fire of 1917. The rebuilt 20th-century city has a modern European layout. Greece is a country in southeastern Europe with thousands of islands throughout the Aegean and Ionian seas. Influential in ancient times, it's often called the cradle of Western civilization. Athens, its capital, retains landmarks including the 5th-century B.C. Acropolis citadel with the Parth...

    published: 28 Jan 2025
  • Top 10 Best Things to Do in Thessaloniki, Greece [Thessaloniki Travel Guide 2025]

    Welcome to our video on the best things to do in Thaloniki! Whether you're a history buff, a foodie, or simply looking to soak up the sun, Thessaloniki has something for everyone. In this video, we'll explore the top attractions, hidden gems, and local favorites that make Thessaloniki a must-visit destination. From the UNESCO World Heritage Site of the Rotunda to the bustling markets of Modiano, get ready to immerse yourself in the rich culture and vibrant energy of this Greek city. Thessaloniki, Greece, travel, things to do, attractions, Greek culture, history, food, sightseeing, travel guide, tourism, Balkans, Mediterranean, Rotunda, Modiano, White Tower, Ano Poli, Ladadika, Aristotelous Square, museums, Byzantine, Roman, Ottoman, cuisine ▬Contents of this video▬ 00:00 Introduction 00...

    published: 17 Dec 2024
  • 24 Hours of Greek Food | Ultimate Greek Food Tour in Thessaloniki! 🇬🇷🍽️

    Join us on an epic 24-hour food adventure through the heart of Thessaloniki, Greece! Get ready to experience the rich and diverse flavors of traditional Greek cuisine as we explore some of the city's best local spots featuring street food and restaurants. Here's what you'll see: 1. *PITA PITA MAXX* - We kick off our journey at this beloved local gyros place. Dive into the delicious world of Greek gyros, packed with juicy meat and fresh veggies, wrapped in warm pita bread. 2. *Maraschino* - Next, we head to this charming pastry shop known for its mouth-watering tulumbas and an array of other traditional Greek sweets. Indulge your sweet tooth with these irresistible treats! 3. *Bougatsa O Serraio* - Watch the magic happen as we visit a small, traditional bakery where bougatsa pi...

    published: 01 Jun 2024
  • First Impressions of THESSALONIKI, GREECE! Not What We Expected! (City tour)

    Welcome to GREECE! Huge Thanks to Traverse and Visit Greece for taking us to Thessaloniki! We started off just by exploring the City of Thessaloniki, trying the famous spanakopita and heading up to the White Tower! Obviously whilst you are in Greece you have to visit a vineyard, It would be rude not to! The next day we headed to Central Macedonia to the national park for a water buffalo safari and a boat ride on the lake!!!!! Thank you SkyScanner for being a long term sponsor: https://www.skyscanner.net ______________________________________________ ➡️ FOLLOW US ON INSTAGRAM: https://www.instagram.com/dabbleandtravel/ ➡️ Our Exclusive Community! : https://www.patreon.com/dabbleandtravel ➡️ FOR MONEY OFF AIR BnB: https://abnb.me/e/QMpFY67lUZ (at no extra cost to you!) ➡️ TO BUY OUR...

    published: 28 Nov 2022
  • Greece, walk through Thessaloniki.

    Thessaloniki is the second-largest city in Greece and the capital of the geographic region of Macedonia. Thessaloniki is located on the Thermaic Gulf, at the northwest corner of the Aegean Sea. It is bounded on the west by the delta of the Axios.

    published: 15 Mar 2025
  • Thessaloniki Greece : 2 days itinerary, best places to visit #travel #europe #greece #thessaloniki

    Explore the vibrant city of Thessaloniki, Greece, with our comprehensive travel guide. Whether you're seeking rich history, delicious cuisine, or bustling nightlife, Thessaloniki offers an unforgettable experience. Discover the iconic landmarks of Thessaloniki like the White Tower, an emblem of the city offering panoramic views, and the Rotunda, a Roman monument with stunning mosaics. Wander through the ancient ruins of the Roman Forum and the Byzantine walls, or visit the Agios Dimitrios Church, dedicated to the city's patron saint. Immerse yourself in Thessaloniki's rich cultural heritage with visits to the Archaeological Museum and the Museum of Byzantine Culture, housing impressive collections of ancient artifacts and Byzantine art. Explore the vibrant Ano Poli (Upper Town) with its ...

    published: 10 Jul 2024
Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023
11:31

Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023

  • Order:
  • Duration: 11:31
  • Uploaded Date: 12 Apr 2023
  • views: 103223
Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023 Welcome to my video showcasing the top tourist attractions in Thessaloniki, Greece. Thessaloniki is a vibrant and historic city located on the Aegean Sea, renowned for its rich cultural heritage, stunning architecture, and scenic beauty. In this video, we'll take a closer look at some of the city's most iconic landmarks and must-see attractions, including the Arch of Galerius, the White Tower, the ancient ruins of the Roman Forum, and much more. Join me on a journey through the fascinating history and culture of Thessaloniki, as we explore the city's top tourist attractions and discover why it's a destination not to be missed. So sit back, relax, and enjoy this virtual tour of Thessaloniki, Greece. If you enjoyed this video and want to see more content like this, don't forget to subscribe to our channel. By subscribing, you'll be notified every time we release a new video showcasing the best of Thessaloniki and other amazing destinations around the world. Subscribing is quick and easy - just hit the subscribe button and turn on notifications to stay up to date with our latest videos. We appreciate your support and hope you continue to join us on our adventures. Thank you for watching. More Travel Guide Videos...! Latvia: https://youtu.be/3IPO6tmT-W0 Bulgaria: https://youtu.be/eeBMa1fLLWs Slovakia: https://youtu.be/jS9qsdLAYmk Slovenia: https://youtu.be/10ODmcwg8HM Croatia: https://youtu.be/fC5RYf2Jajs Republic of Ireland: https://youtu.be/fxif25ac5KI Norway: https://youtu.be/N8jCz6TBPJw Turkey: https://youtu.be/VWMPvF2QsU0 Greece: https://youtu.be/il7l3aGqXRw Switzerland: https://youtu.be/VHoH-RuGH2k France: https://youtu.be/j0u0OJXjubo Italy: https://youtu.be/Eh1Jf_WoFbE Austria: https://youtu.be/FM6bqENLnoI Belgium: https://youtu.be/U3-1nCKvCeE Germany: https://youtu.be/GwhE_Wo_fJc Porto: https://youtu.be/LO96ZrWzXTQ Florence: https://youtu.be/iwk3E8uNcGo Antalya: https://youtu.be/8KPI7LuS81s Frankfurt: https://youtu.be/MQ0_4LUCtTI Hamburg: https://youtu.be/aw28hc4ktGM Moscow: https://youtu.be/-SgyWjG0WIc Dublin: https://youtu.be/EjNEeMGxSXc Brussels: https://youtu.be/WSppWQjciSA Barcelona: https://youtu.be/XtiWIWD5LDs Warsaw: https://youtu.be/QnRRekO7fqo Oslo: https://youtu.be/7bEC9t_Gyeo Copenhagen: https://youtu.be/20BpP6cG9mw Amsterdam: https://youtu.be/nEfJkuI8D0w Helsinki: https://youtu.be/ipyOhHlj64Q Milan: https://youtu.be/RC_u0SIgt4w Munich: https://youtu.be/SwSAaq9BXEo Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023 #travel #2021 #europe #city #vlog #cityscape #nature #travelguide #travelvlog #trending #viral #video #thingstodo #placestovisit #Thessalonikitour #Thessalonikitravelguide #Thessalonikivlog #europe #Thessalonikitimelapse #Thessaloniki2023 #Thessalonikinightlife #Thessalonikitravel #Thessaloniki #greece #Thessalonikigreece In this Video you will watch. Thessaloniki travel Thessaloniki tour Thessaloniki drone view Thessaloniki streets Thessaloniki places to visit Thessaloniki things to do Thessaloniki tourist attractions Thessaloniki places to go Thessaloniki places to eat Thessaloniki best places Thessaloniki 2023 Thessaloniki Visit Thessaloniki top tourist attractions Thessaloniki vlog Thessaloniki Travel Vlog The best time to visit Thessaloniki Magical places in Thessaloniki Most unique places to visit in Thessaloniki Things to do in Thessaloniki 10 best places in Thessaloniki to visit Best places to visit in Thessaloniki for couples Most beautiful places in Thessaloniki Places to visit in Thessaloniki Thessaloniki Beautiful places Thessaloniki places to live Thessaloniki tourist places Thessaloniki Thessaloniki Attractions Thessaloniki sightseeing Thessaloniki tourist spots Thessaloniki itenerary Thessaloniki tourist destinations Greece travel guide
https://wn.com/Thessaloniki_Travel_Guide_Best_Places_And_Things_To_Do_In_Thessaloniki_Greece_In_2023
Thessaloniki Greece: 13 BEST Things To Do In 2024 (Travel Guide)
8:09

Thessaloniki Greece: 13 BEST Things To Do In 2024 (Travel Guide)

  • Order:
  • Duration: 8:09
  • Uploaded Date: 03 Jul 2024
  • views: 33363
Thessaloniki, Greece's vibrant northern city, is renowned for its rich history and cultural diversity. Landmarks like the White Tower and Rotunda reflect its Byzantine and Ottoman past. With bustling markets, lively nightlife, and a thriving arts scene, Thessaloniki seamlessly blends ancient heritage with contemporary urban life. Contact us via email: ytmediabrands@gmail.com #travelscout
https://wn.com/Thessaloniki_Greece_13_Best_Things_To_Do_In_2024_(Travel_Guide)
Thessaloniki Travel Guide 2025 - Best Places to Visit in Thessaloniki Greece in 2025
8:46

Thessaloniki Travel Guide 2025 - Best Places to Visit in Thessaloniki Greece in 2025

  • Order:
  • Duration: 8:46
  • Uploaded Date: 28 Jan 2025
  • views: 7103
Thessaloniki Travel Guide 2025 - Best Places to Visit in Thessaloniki Greece in 2025 Thessaloniki is a Greek port city on the Thermaic Gulf of the Aegean Sea. Evidence of Roman, Byzantine and Ottoman history remains, especially around Ano Poli, the upper town. The ruins of Roman Emperor Galerius’ 4th-century palace include the Rotunda that has been both a church and a mosque. Much of the city center was destroyed in the Great Fire of 1917. The rebuilt 20th-century city has a modern European layout. Greece is a country in southeastern Europe with thousands of islands throughout the Aegean and Ionian seas. Influential in ancient times, it's often called the cradle of Western civilization. Athens, its capital, retains landmarks including the 5th-century B.C. Acropolis citadel with the Parthenon temple. Greece is also known for its beaches, from the black sands of Santorini to the party resorts of Mykonos. More Travel Guide Videos...! Geneva Travel Guide 2025 https://youtu.be/Z4xYHEO-2AU Tallinn Travel Guide 2025 https://youtu.be/FY-HG1m5KDU Tbilisi Travel Guide 2025 https://youtu.be/_2woyzb1TyQ Bristol Travel Guide 2025 https://youtu.be/opC3cGEKv5g Florence Travel Guide 2025 https://youtu.be/RdOsGoNAopE Krakow Travel Guide 2025 https://youtu.be/mHM-nA3GL7w Belgrade Travel Guide 2025 https://youtu.be/OUpofUw1A30 Oslo Travel Guide 2025 https://youtu.be/-VXQFl36m40 Genoa Travel Guide 2025 https://youtu.be/SC0OfqafNhU Turin Travel Guide 2025 https://youtu.be/6XO2uBgfZLg Cologne Travel Guide 2025 https://youtu.be/FZv0F5ucwag Subscribe for more videos...! https://www.youtube.com/@UCIvOUTuA_JHMv6M_wPQNxUA Thessaloniki Thessaloniki 2025 Thessaloniki city Thessaloniki 4k Thessaloniki Greece Thessaloniki travel Thessaloniki tour Thessaloniki visit Thessaloniki travel guide Thessaloniki travel guide 2025 Thessaloniki tour guide Thessaloniki tourist guide Thessaloniki places to visit Thessaloniki things to do Thessaloniki top tourist attractions Thessaloniki drone view Thessaloniki streets Driving in Thessaloniki Thessaloniki driving Thessaloniki walking Walking in Thessaloniki Places to visit in Thessaloniki Things to do in Thessaloniki Top tourist attractions in Thessaloniki Thessaloniki vlog Thessaloniki travel vlog Greece Greece 2025 Greece 4k Greece places to visit Greece things to do Greece top tourist attractions #Thessaloniki #Greece #Thessalonikicity #ThessalonikiGreece #Thessaloniki4k #Thessaloniki2025 #Thessalonikiplacestovisit #Thessalonikithingstodo #Thessalonikitoptouristattractions #Thessalonikitravelguide #Thessalonikitravel #Greece4k #Greece2025 #Greecetravel
https://wn.com/Thessaloniki_Travel_Guide_2025_Best_Places_To_Visit_In_Thessaloniki_Greece_In_2025
Top 10 Best Things to Do in Thessaloniki, Greece [Thessaloniki Travel Guide 2025]
8:46

Top 10 Best Things to Do in Thessaloniki, Greece [Thessaloniki Travel Guide 2025]

  • Order:
  • Duration: 8:46
  • Uploaded Date: 17 Dec 2024
  • views: 7865
Welcome to our video on the best things to do in Thaloniki! Whether you're a history buff, a foodie, or simply looking to soak up the sun, Thessaloniki has something for everyone. In this video, we'll explore the top attractions, hidden gems, and local favorites that make Thessaloniki a must-visit destination. From the UNESCO World Heritage Site of the Rotunda to the bustling markets of Modiano, get ready to immerse yourself in the rich culture and vibrant energy of this Greek city. Thessaloniki, Greece, travel, things to do, attractions, Greek culture, history, food, sightseeing, travel guide, tourism, Balkans, Mediterranean, Rotunda, Modiano, White Tower, Ano Poli, Ladadika, Aristotelous Square, museums, Byzantine, Roman, Ottoman, cuisine ▬Contents of this video▬ 00:00 Introduction 00:51 White Tower 01:37 Rotunda of Galerius 02:23 Heptapyrgion 03:09 Hagia Sophia 03:51 Aristotelous Square 04:33 Ladadika District 05:13 Agios Dimitrios Church 05:49 Arch of Galerius 06:28 Nea Paralia 07:15 Archaeological Museum of Thessaloniki #thessaloniki #greece #travelguide #thingstodo #greekculture #history #foodie #explorethessaloniki #balkanstravel #visitgreece #mediterranean #rotunda #modiano #whitetower #anopoli #ladadika #aristoteloussquare #museums #byzantinehistory #greekcuisine Music credit: Extenz - Gravity (Vlog No Copyright Music): https://youtu.be/Dqads4X-WuQ Cinematic Background Music - Mu Hanz: https://youtu.be/S6W9bNo4wHk Epic Adventure Cinematic Music - Infraction: https://youtu.be/HvtIGihCGUE Inspiring Cinematic Music - Michael Nik: https://youtu.be/heS-eGCbyVk Disclaimer: We have used video footage and images to maximize the clarity of the content, not specifically to promote any violence against the community. This content only intends to share information for educational purposes. ***Footage, music, image, and graphics used in the video belong to their respective owners, and we or this channel do not claim any right over them. This video has been produced following the Fair Usage Policy “Under Section 107” of the “Copyright Act 1976”. If you have any copyright issues, don't hesitate to get in touch with us by email. For business inquiries, please email: onvacationidea@gmail.com
https://wn.com/Top_10_Best_Things_To_Do_In_Thessaloniki,_Greece_Thessaloniki_Travel_Guide_2025
24 Hours of Greek Food | Ultimate Greek Food Tour in Thessaloniki! 🇬🇷🍽️
17:19

24 Hours of Greek Food | Ultimate Greek Food Tour in Thessaloniki! 🇬🇷🍽️

  • Order:
  • Duration: 17:19
  • Uploaded Date: 01 Jun 2024
  • views: 539034
Join us on an epic 24-hour food adventure through the heart of Thessaloniki, Greece! Get ready to experience the rich and diverse flavors of traditional Greek cuisine as we explore some of the city's best local spots featuring street food and restaurants. Here's what you'll see: 1. *PITA PITA MAXX* - We kick off our journey at this beloved local gyros place. Dive into the delicious world of Greek gyros, packed with juicy meat and fresh veggies, wrapped in warm pita bread. 2. *Maraschino* - Next, we head to this charming pastry shop known for its mouth-watering tulumbas and an array of other traditional Greek sweets. Indulge your sweet tooth with these irresistible treats! 3. *Bougatsa O Serraio* - Watch the magic happen as we visit a small, traditional bakery where bougatsa pies are made by hand. Discover the intricate process behind these flaky, cheese or custard-filled delights. 4. *KANOULA Restaurant* - The highlight of our food tour! At Kanoula, we savor a variety of iconic Greek dishes, from moussaka and kavurma to Greek salad, showcasing the best of Greek culinary tradition. 5. *Two More Gyros Spots* - Our gyros adventure continues as we explore two more incredible local joints, each offering their unique twist on this classic Greek street food, Aristotelous and Fate Skaste. 6. *Trigona Elenidi* - Finally, we end our delicious journey with a visit to Trigona Elenidi. The famous Trigona, a triangular phyllo pastry filled with rich, creamy vanilla cream, a dessert that's a must-try in Thessaloniki. 📱FOLLOW: Instagram: https://www.instagram.com/alexmarktravel/ #Greek #Food #Thessaloniki #FoodTour #gyros Restaurants/places visited in this video: 1. // *_PITA PITA MAXX_* // Address: 28is Oktovriou 41, Thessaloniki 546 42, Greece https://maps.app.goo.gl/QtgE36FjLG3wNpwh9 2. // *_Maraschino_* // Address: Leof. Vasilissis Olgas 75, Thessaloniki 546 42, Greece https://maps.app.goo.gl/RSr6TrzPuRs4rjbQ9 3. // *_Bougatsa O Serraio_* // Address: Konstantinoupoleos 41, Thessaloniki 546 39, Greece https://maps.app.goo.gl/RqZ6F2zkxnM5n5136 4. // *_Kanoula_* // Address: Taskou Papageorgiou 4, Thessaloniki 546 31, Greece https://maps.app.goo.gl/5YeC9nWbXKZJxPEg9 5. // *_O gyros tis Aristotelous_* // Address: Aristotélous 24, Thessaloniki 546 23, Greece https://maps.app.goo.gl/i2Xh3qXpeGGxHxVp8 6. // *_Fate Skaste_* // Address: Leof. Vasileos Georgiou 24, Thessaloniki 546 40, Greece https://maps.app.goo.gl/uCoHUaALV7J6ezwA8 7. // *_Trigona Elenidi_* // Address: Dim. Gounari 13, Thessaloniki 546 22, Greece https://maps.app.goo.gl/JDZZUNU56ykYbJZx5 8. // *_Rodos Delicatessen_* // Address: Leof. Vasileos Georgiou 12, Thessaloniki 546 40, Greece https://maps.app.goo.gl/ZhRqndYHjCWV4hYw5 9. // *_Terkenlis_* // Address: Tsimiski 30, Thessaloniki 546 36, Greece https://maps.app.goo.gl/2EAckfVGLTqbm3E37 10.// *_De Facto Café_* // Address: P. Mela 19, Thessaloniki 546 22, Greece https://maps.app.goo.gl/r5X7vUWefuMf65M39 Chapters: 00:00 – Intro 01:14 – Pita Pita MAXX - Local Gyros Place 03:28 – Maraschino Sweet Bakery 04:30 – Bougatsa O Serraio - Traditional Greek Pie 08:05 – Kanoula - Traditional Greek Restaurant 12:09 – O gyros tis Aristotelous - Gigantic Gyros 12:45 – Φάτε Σκάστε - Gyros & Kontosouvli Chicken 13:58 – Trigona Elenidi - Sweet Triangle Desserts 15:17 – Some More Shops
https://wn.com/24_Hours_Of_Greek_Food_|_Ultimate_Greek_Food_Tour_In_Thessaloniki_🇬🇷🍽️
First Impressions of THESSALONIKI, GREECE! Not What We Expected! (City tour)
17:25

First Impressions of THESSALONIKI, GREECE! Not What We Expected! (City tour)

  • Order:
  • Duration: 17:25
  • Uploaded Date: 28 Nov 2022
  • views: 139754
Welcome to GREECE! Huge Thanks to Traverse and Visit Greece for taking us to Thessaloniki! We started off just by exploring the City of Thessaloniki, trying the famous spanakopita and heading up to the White Tower! Obviously whilst you are in Greece you have to visit a vineyard, It would be rude not to! The next day we headed to Central Macedonia to the national park for a water buffalo safari and a boat ride on the lake!!!!! Thank you SkyScanner for being a long term sponsor: https://www.skyscanner.net ______________________________________________ ➡️ FOLLOW US ON INSTAGRAM: https://www.instagram.com/dabbleandtravel/ ➡️ Our Exclusive Community! : https://www.patreon.com/dabbleandtravel ➡️ FOR MONEY OFF AIR BnB: https://abnb.me/e/QMpFY67lUZ (at no extra cost to you!) ➡️ TO BUY OUR BACKPACK: https://www.manfrotto.com/uk-en/pro-light-flexloader-backpack-l-mb-pl2-bp-fx-l/
https://wn.com/First_Impressions_Of_Thessaloniki,_Greece_Not_What_We_Expected_(City_Tour)
Greece, walk through Thessaloniki.
27:19

Greece, walk through Thessaloniki.

  • Order:
  • Duration: 27:19
  • Uploaded Date: 15 Mar 2025
  • views: 20
Thessaloniki is the second-largest city in Greece and the capital of the geographic region of Macedonia. Thessaloniki is located on the Thermaic Gulf, at the northwest corner of the Aegean Sea. It is bounded on the west by the delta of the Axios.
https://wn.com/Greece,_Walk_Through_Thessaloniki.
Thessaloniki Greece : 2 days itinerary, best places to visit #travel #europe #greece #thessaloniki
0:16

Thessaloniki Greece : 2 days itinerary, best places to visit #travel #europe #greece #thessaloniki

  • Order:
  • Duration: 0:16
  • Uploaded Date: 10 Jul 2024
  • views: 10247
Explore the vibrant city of Thessaloniki, Greece, with our comprehensive travel guide. Whether you're seeking rich history, delicious cuisine, or bustling nightlife, Thessaloniki offers an unforgettable experience. Discover the iconic landmarks of Thessaloniki like the White Tower, an emblem of the city offering panoramic views, and the Rotunda, a Roman monument with stunning mosaics. Wander through the ancient ruins of the Roman Forum and the Byzantine walls, or visit the Agios Dimitrios Church, dedicated to the city's patron saint. Immerse yourself in Thessaloniki's rich cultural heritage with visits to the Archaeological Museum and the Museum of Byzantine Culture, housing impressive collections of ancient artifacts and Byzantine art. Explore the vibrant Ano Poli (Upper Town) with its traditional houses, narrow streets, and stunning views over the city. Indulge in Thessaloniki's culinary delights with mouthwatering Greek dishes such as gyros, souvlaki, and fresh seafood at local tavernas and modern eateries. Relax at cozy cafes and trendy bars along the waterfront or in the bustling Ladadika district, known for its lively nightlife. Navigate Thessaloniki with our travel tips on transportation, weather, and local customs, ensuring a seamless and memorable vacation. Experience the best of Thessaloniki with our travel vlog, showcasing the city's beauty, activities, and hidden gems. Plan your perfect getaway to Thessaloniki, where history, gastronomy, and vibrant culture await. #ThessalonikiTravelGuide #ExploreThessaloniki #VisitGreece #ThessalonikiLandmarks #GreekCuisine #ThessalonikiNightlife #TravelGreece
https://wn.com/Thessaloniki_Greece_2_Days_Itinerary,_Best_Places_To_Visit_Travel_Europe_Greece_Thessaloniki
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023
    11:31
    Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023remove from playlist
  • Thessaloniki Greece: 13 BEST Things To Do In 2024 (Travel Guide)
    8:09
    Thessaloniki Greece: 13 BEST Things To Do In 2024 (Travel Guide)remove from playlist
  • Thessaloniki Travel Guide 2025 - Best Places to Visit in Thessaloniki Greece in 2025
    8:46
    Thessaloniki Travel Guide 2025 - Best Places to Visit in Thessaloniki Greece in 2025remove from playlist
  • Top 10 Best Things to Do in Thessaloniki, Greece [Thessaloniki Travel Guide 2025]
    8:46
    Top 10 Best Things to Do in Thessaloniki, Greece [Thessaloniki Travel Guide 2025]remove from playlist
  • 24 Hours of Greek Food | Ultimate Greek Food Tour in Thessaloniki! 🇬🇷🍽️
    17:19
    24 Hours of Greek Food | Ultimate Greek Food Tour in Thessaloniki! 🇬🇷🍽️remove from playlist
  • First Impressions of THESSALONIKI, GREECE! Not What We Expected! (City tour)
    17:25
    First Impressions of THESSALONIKI, GREECE! Not What We Expected! (City tour)remove from playlist
  • Greece, walk through Thessaloniki.
    27:19
    Greece, walk through Thessaloniki.remove from playlist
  • Thessaloniki Greece : 2 days itinerary, best places to visit #travel #europe #greece #thessaloniki
    0:16
    Thessaloniki Greece : 2 days itinerary, best places to visit #travel #europe #greece #thessalonikiremove from playlist
PLAYLIST TIME: 0:00 / 1:39:31

Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023

Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023 Welcome to my video showcasing the top tourist attractions in Thessaloniki, Greece. Thessaloniki is a vibrant and historic city located on the Aegean Sea, renowned for its rich cultural heritage, stunning architecture, and scenic beauty. In this video, we'll take a closer look at some of the city's most iconic landmarks and must-see attractions, including the Arch of Galerius, the White Tower, the ancient ruins of the Roman Forum, and much more. Join me on a journey through the fascinating history and culture of Thessaloniki, as we explore the city's top tourist attractions and discover why it's a destination not to be missed. So sit back, relax, and enjoy this virtual tour of Thessaloniki, Greece. If you enjoyed this video and want to see more content like this, don't forget to subscribe to our channel. By subscribing, you'll be notified every time we release a new video showcasing the best of Thessaloniki and other amazing destinations around the world. Subscribing is quick and easy - just hit the subscribe button and turn on notifications to stay up to date with our latest videos. We appreciate your support and hope you continue to join us on our adventures. Thank you for watching. More Travel Guide Videos...! Latvia: https://youtu.be/3IPO6tmT-W0 Bulgaria: https://youtu.be/eeBMa1fLLWs Slovakia: https://youtu.be/jS9qsdLAYmk Slovenia: https://youtu.be/10ODmcwg8HM Croatia: https://youtu.be/fC5RYf2Jajs Republic of Ireland: https://youtu.be/fxif25ac5KI Norway: https://youtu.be/N8jCz6TBPJw Turkey: https://youtu.be/VWMPvF2QsU0 Greece: https://youtu.be/il7l3aGqXRw Switzerland: https://youtu.be/VHoH-RuGH2k France: https://youtu.be/j0u0OJXjubo Italy: https://youtu.be/Eh1Jf_WoFbE Austria: https://youtu.be/FM6bqENLnoI Belgium: https://youtu.be/U3-1nCKvCeE Germany: https://youtu.be/GwhE_Wo_fJc Porto: https://youtu.be/LO96ZrWzXTQ Florence: https://youtu.be/iwk3E8uNcGo Antalya: https://youtu.be/8KPI7LuS81s Frankfurt: https://youtu.be/MQ0_4LUCtTI Hamburg: https://youtu.be/aw28hc4ktGM Moscow: https://youtu.be/-SgyWjG0WIc Dublin: https://youtu.be/EjNEeMGxSXc Brussels: https://youtu.be/WSppWQjciSA Barcelona: https://youtu.be/XtiWIWD5LDs Warsaw: https://youtu.be/QnRRekO7fqo Oslo: https://youtu.be/7bEC9t_Gyeo Copenhagen: https://youtu.be/20BpP6cG9mw Amsterdam: https://youtu.be/nEfJkuI8D0w Helsinki: https://youtu.be/ipyOhHlj64Q Milan: https://youtu.be/RC_u0SIgt4w Munich: https://youtu.be/SwSAaq9BXEo Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023 #travel #2021 #europe #city #vlog #cityscape #nature #travelguide #travelvlog #trending #viral #video #thingstodo #placestovisit #Thessalonikitour #Thessalonikitravelguide #Thessalonikivlog #europe #Thessalonikitimelapse #Thessaloniki2023 #Thessalonikinightlife #Thessalonikitravel #Thessaloniki #greece #Thessalonikigreece In this Video you will watch. Thessaloniki travel Thessaloniki tour Thessaloniki drone view Thessaloniki streets Thessaloniki places to visit Thessaloniki things to do Thessaloniki tourist attractions Thessaloniki places to go Thessaloniki places to eat Thessaloniki best places Thessaloniki 2023 Thessaloniki Visit Thessaloniki top tourist attractions Thessaloniki vlog Thessaloniki Travel Vlog The best time to visit Thessaloniki Magical places in Thessaloniki Most unique places to visit in Thessaloniki Things to do in Thessaloniki 10 best places in Thessaloniki to visit Best places to visit in Thessaloniki for couples Most beautiful places in Thessaloniki Places to visit in Thessaloniki Thessaloniki Beautiful places Thessaloniki places to live Thessaloniki tourist places Thessaloniki Thessaloniki Attractions Thessaloniki sightseeing Thessaloniki tourist spots Thessaloniki itenerary Thessaloniki tourist destinations Greece travel guide
11:31
Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023
Thessaloniki Travel Guide - Best Places and Things to do in Thessaloniki Greece in 2023 W...
published: 12 Apr 2023
Play in Full Screen
8:09
Thessaloniki Greece: 13 BEST Things To Do In 2024 (Travel Guide)
Thessaloniki, Greece's vibrant northern city, is renowned for its rich history and cultura...
published: 03 Jul 2024
Play in Full Screen
8:46
Thessaloniki Travel Guide 2025 - Best Places to Visit in Thessaloniki Greece in 2025
Thessaloniki Travel Guide 2025 - Best Places to Visit in Thessaloniki Greece in 2025 Thes...
published: 28 Jan 2025
Play in Full Screen
8:46
Top 10 Best Things to Do in Thessaloniki, Greece [Thessaloniki Travel Guide 2025]
Welcome to our video on the best things to do in Thaloniki! Whether you're a history buff,...
published: 17 Dec 2024
Play in Full Screen
17:19
24 Hours of Greek Food | Ultimate Greek Food Tour in Thessaloniki! 🇬🇷🍽️
Join us on an epic 24-hour food adventure through the heart of Thessaloniki, Greece! Get r...
published: 01 Jun 2024
Play in Full Screen
17:25
First Impressions of THESSALONIKI, GREECE! Not What We Expected! (City tour)
Welcome to GREECE! Huge Thanks to Traverse and Visit Greece for taking us to Thessaloniki!...
published: 28 Nov 2022
Play in Full Screen
27:19
Greece, walk through Thessaloniki.
Thessaloniki is the second-largest city in Greece and the capital of the geographic region...
published: 15 Mar 2025
Play in Full Screen
0:16
Thessaloniki Greece : 2 days itinerary, best places to visit #travel #europe #greece #thessaloniki
Explore the vibrant city of Thessaloniki, Greece, with our comprehensive travel guide. Whe...
published: 10 Jul 2024
Play in Full Screen
'); } 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: thessaloniki

Edit

Charges filed against Thessaloniki far-right group members

Ekathimerini 08 May 2025
Authorities filed charges against 29 members of the far-right group Ethnikistiki Neolaia Thessalonikis (ENETH), also known as Defend Salonica, including 15 minors, police in Thessaloniki announced on Wednesday.
Edit

Police crack down on Thessaloniki youth far-right group, arrests include 12 minors

Ekathimerini 07 May 2025
A police operation was launched Friday in Thessaloniki targeting a far-right group, Nationalist Youth of Thessaloniki, also ...
Edit

Thessaloniki Jewish Community wins 30-year legal battle over land dispute

Ekathimerini 07 May 2025
In 1917, a devastating fire destroyed much of Thessaloniki ... The courts determined the amount in 1957, and in 1967, the Jewish Community of Thessaloniki paid compensation to three of the six heirs.
Edit

Man arrested in Thessaloniki on Bulgarian arrest warrant

Ekathimerini 06 May 2025
A 50-year-old Bulgarian national was arrested in Thessaloniki on Tuesday ...
Edit

Two teenagers charged over alleged assault on bus driver near Thessaloniki

Ekathimerini 05 May 2025
... bus driver last month in a village near Thessaloniki, police said ... A case file has been submitted to the Thessaloniki prosecutor’s office.
Edit

Greece Braces for Heatwave and African Dust Surge This Week

Greek City Times 05 May 2025
... as the hottest days, with "mud rain" possible in Athens and Thessaloniki.
Edit

Tempe tunnels closed for road works, Athens-Thessaloniki drivers to face delays

Ekathimerini 05 May 2025
Motorists traveling between Athens and Thessaloniki this week are advised to make a bit more time ...
Edit

Woman dies when a bomb she is carrying explodes in the Greek city of Thessaloniki, ...

Yahoo Daily News 04 May 2025
A woman was killed early Saturday in the northern Greek city of Thessaloniki when a bomb ...
Edit

Thessaloniki police issue over 250 fines in 24-hour traffic blitz

Ekathimerini 04 May 2025
Traffic Police in Thessaloniki recorded 253 infractions within a 24-hour period, 38 of which led to them impounding or ...
Edit

Woman dies in Thessaloniki explosion

Ekathimerini 03 May 2025
A 38-year-old woman who was seriously injured in an early-morning explosion in central Thessaloniki has died from her injuries ... .
Edit

Blast kills a woman in Greek city of Thessaloniki

Arab News 03 May 2025
Updated 4 min 49 sec ago. Reuters. May 03, 2025 06.22. .
Edit

Woman dies when a bomb she is carrying explodes in the Greek city of Thessaloniki, police say

North Shore News 03 May 2025
THESSALONIKI, Greece (AP) — A woman was killed early Saturday in the northern Greek city of Thessaloniki when a ...
×