- published: 20 Jul 2020
- views: 1793
'+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; })); }); -->
Robert III of Flanders (1249 – September 17, 1322), also called Robert of Béthune and nicknamed The Lion of Flanders (De Leeuw van Vlaanderen), was Count of Nevers 1273–1322 and Count of Flanders 1305–1322.
Robert was the oldest son of Guy of Dampierre from his first marriage with Matilda of Béthune. His father essentially transferred the reign of Flanders to him in November 1299, during his war with Philip IV of France. Both father and son were taken into captivity in May 1300, and Robert was not released until 1305.
Robert of Béthune gained military fame in Italy, when he fought at the side of his father-in-law, Charles I of Sicily (1265–1268) against the last Hohenstaufens, Manfred and Conradin. Together with his father he took part in 1270 in the Eighth Crusade, led by Saint Louis. After his return from the Crusade he continued to be a loyal aid for his father, politically and militarily, in the fight against the attempts of the French King Philip IV the Fair to add Flanders to the French crown lands.
Robert III may refer to:
Robert de Fyvie [also de Fyvin] (d. 1292 × 1295) was a prelate based in the Kingdom of Scotland in the last quarter of the 13th century. Perhaps coming from Fyvie in Formartine, from a family of Teesdale origin, Robert was Archdeacon of Ross and a student at the University of Bologna by 1269. In 1275, he was not only a graduate but the new Bishop of Ross, a post he held until his death in the first half of the 1290s.
There has been confusion over his name in some sources. Papal sources use S instead of F, Syvin instead of Fyvin, while Scottish sources use the F; Walter Bower erroneously believed his forename was "Thomas", a mistake that was followed by the early modern ecclesiastical historian Robert Keith. His name almost certainly indicates that he came from Fyvie, a royal burgh in the province of Formartine, a royal demesne territory under heavy influence from the immigrant le Cheyne family as well as the Comyn-controlled earldom of Buchan.
He is found as a student at the University of Bologna on 5 December 1269, when along with one Alan de Edinburgh he gave a receipt for 20 marks to some Florentine merchants; in this appearance he is recorded as Archdeacon of Ross, a position which, under the Fortrose Cathedral constitution of 1256, meant he must have already been in deacon's orders, as this constitution made that a prerequisite for holding the archdeaconry. He must have become Archdeacon of Ross sometime after the last known archdeacon, Robert, had become consecrated as Bishop of Ross, that is, after either 1249 or 1250, though there may have been one or several unrecorded archdeacons in an intervening period.
Robert III (14 August 1337 – 4 April 1406), born John Stewart, was King of Scots from 1390 to his death. He was known primarily as the Earl of Carrick before ascending the throne at age 53. He was the eldest son of Robert II and Elizabeth Mure and was legitimated with the marriage of his parents in 1347.
John joined his father and other magnates in a rebellion against his grand-uncle, David II early in 1363 but submitted to him soon afterwards. He married Anabella Drummond, daughter of Sir John Drummond of Stobhall before 31 May 1367 when the Steward ceded to him the earldom of Atholl. In 1368 David created him Earl of Carrick. His father became king in 1371 after the unexpected death of the childless King David. In the succeeding years Carrick was influential in the government of the kingdom but became progressively more impatient at his father's longevity. In 1384 Carrick was appointed the king's lieutenant after having influenced the general council to remove Robert II from direct rule. Carrick's administration saw a renewal of the conflict with England. In 1388 the Scots defeated the English at the Battle of Otterburn where the Scots' commander, James, Earl of Douglas, was killed. By this time Carrick had been badly injured by a horse-kick but the loss of his powerful ally, Douglas, saw a turnaround in magnate support in favour of his younger brother Robert, Earl of Fife and in December 1388 the council transferred the lieutenancy to Fife.
The Count of Flanders was the ruler or sub-ruler of the county of Flanders in the 9th century. The title was held for a time by the Holy Roman Emperor and the King of Spain. It was later abolished during the French Revolution in 1790, when the region was annexed to France. The title has also been granted twice to younger sons of the King of the Belgians. The most recent holder died in 1983.
Although the early rulers from Arnulf I onward, were sometimes referred to as margraves or marquesses, this alternate title largely fell out of use by the 12th century. Since then, the rulers of Flanders have only been referred to as Counts.
The Counts of Flanders enlarged their estate through a series of diplomatic maneuvers. The counties of Hainaut, Namur, Béthune, Nevers, Auxerre, Rethel, Burgundy, and Artois were acquired via marriage with the respective heiresses. However, the County of Flanders suffered the same fate. As a result of the marriage of Countess Margaret III with Philip II, Duke of Burgundy, the county and the subsidiary counties, entered a personal union with the Duchy of Burgundy in 1405. The county ceased to exist in 1795.
Flanders (Dutch: Vlaanderen [ˈvlaːndərə(n)], French: Flandre) today normally refers to the Dutch-speaking northern portion of Belgium. It is one of the communities, regions and language areas of Belgium. The demonym associated with Flanders is Fleming, while the corresponding adjective is Flemish. The official capital of Flanders is Brussels, although Brussels itself has an independent regional government, and the government of Flanders only oversees some cultural aspects of Brussels life.
Historically, the name referred to the County of Flanders, which around 1000 CE stretched from the Strait of Dover to the Scheldt estuary. The only parts of historical Flanders that lay within modern-day Flanders are the provinces West Flanders and East Flanders. Nevertheless, during the 19th and 20th centuries it became increasingly commonplace to use the term "Flanders" to refer to the entire Dutch-speaking part of Belgium, stretching all the way to the River Maas. In accordance with late 20th century Belgian state reforms the area was made into two political entities: the "Flemish Community" (Dutch: Vlaamse Gemeenschap) and the "Flemish Region" (Dutch: Vlaams Gewest). These entities were merged, although geographically the Flemish Community, which has a broader cultural mandate, covers Brussels, whereas the Flemish Region does not.
The Flanders Historic District is a historic district that encompasses a small cluster of late-18th to early-19th century residential structures north of the center of Kent, Connecticut, which was the original heart of the community when it was first settled. There are twelve major buildings, of which five are large Federal style houses, three are older colonial-era buildings, and two later vernacular Greek Revival structures. The oldest house, that of John Beebe, Sr., was built in 1741.
The district was listed on the National Register of Historic Places in 1979.
'Mountebank History of Scotland' is a series of short videos by Scottish comedian Daniel Downie charting Scotland's history from the 1st century to the present day Episode #15 - Robert II & Robert III
Get ready for your cheeks to hurt from too much laughter! Robert White is taking to our Semi-Final stage and he’s bringing the comedy gold with him. But look out Judges, you know he’s not going to leave you unscathed in this act... See more from Britain's Got Talent at http://itv.com/talent SUBSCRIBE: http://bit.ly/BGTsub Facebook: http://www.facebook.com/BGT Twitter: http://twitter.com/BGT
Subscribe - http://bit.ly/Follow_GameM Honkai Star Rail Rubert III Cometh Swarm Disaster Simulated Universe Have the countdown at exactly 0 when entering a Boss: Swarm domain (at Difficulty IV or higher)
Robert Williams III 2022 NBA Playoffs Best Highlights Watch the best of Robert Williams III in the 2022 NBA Playoffs as he averaged 7.7 PPG (on 67.9 FG% and 89.3 FT% ) to go with 6.2 RPG and 2.2 APG for the Boston Celtics (17 games played). for business inquiries: [email protected] https://www.patreon.com/Timi093 ► if you want to become my Patron https://www.paypal.me/Timi093 ► if you want to support me the other way ► SUBSCRIBE: https://www.youtube.com/c/TomaszKordylewskiTimi/?sub_confirmation=1 I am Timi and this is channel about the Boston Celtics. You can find here highlights, analysis, news and more. Subscribe today, watch and comment! All suggestions are greatly appreciated. Thanks for the support! Special thanks to Patrons: ► Matthew Berlanti ► John Kinsella ► Alan P...
Best of Robert Williams III in 2021-22 NBA Regular Season Watch the best of Robert Williams III from 2021-22 NBA Regular Season as he averaged 10.0 PPG (on 73 FG% and 72 FT%) to go with 9.6 RPG and 2.2 BPG (all career-highs) for the Boston Celtics (61 games played). for business inquiries: [email protected] https://www.patreon.com/Timi093 ► if you want to become my Patron https://www.paypal.me/Timi093 ► if you want to support me the other way ► SUBSCRIBE: https://www.youtube.com/c/TomaszKordylewskiTimi/?sub_confirmation=1 I am Timi and this is channel about the Boston Celtics. You can find here highlights, analysis, news and more. Subscribe today, watch and comment! All suggestions are greatly appreciated. Thanks for the support! Special thanks to Patrons: ► Matthew Berlan...
Robert Williams III Highlights vs Denver Nuggets (15 pts, 16 reb, 3 blk) | 2021-22 NBA Season Statline: 15 pts (7/12 FG), 16 reb, 2 ast, 3 blk in 37 minutes for business inquiries: [email protected] https://www.patreon.com/Timi093 ► if you want to become my Patron https://www.paypal.me/Timi093 ► if you want to support me the other way ► SUBSCRIBE: https://www.youtube.com/c/TomaszKordylewskiTimi/?sub_confirmation=1 I am Timi and this is channel about the Boston Celtics. You can find here highlights, analysis, news and more. Subscribe today, watch and comment! All suggestions are greatly appreciated. Thanks for the support! Special thanks to Patrons: ► Matthew Berlanti ► John Kinsella ► Alan Post ► Jimmy Chen ► Jared Seigal ► Donovan Beatty ► Jeevan Singh ► Justin Burke ► Rya...
Robert II of Scotland, tales from Scotlands history. Who was the first Stewart king of Scotland? Bruce Fummey with Scottish humour and history gives a quick introduction to Robert II, the first Stewart king of Scotland, gives a list of Stewart kings of Scotland, England and The United Kingdom, and explains where the Stewart kings come from. All this with a visit to Dundonald Castle, an Historic Scotland site and one of the historic places to visit in Ayrhsire Three ways to help Scotland History Tours video productions at https://www.scotlandhistorytours.co.uk/support Here's a video explaining the three ways to help me make more videos https://youtu.be/YFEZvf2U2cA on this day in Sottish history - 19th April #ScotSpirit Take a guided Scottish history tour with Bruce at www.scotlandhistor...
CBS 2's Asal Rezaei reports on the police presence outside the suspect's home in Highwood, near Highland Park. *********************************************************** ABOUT CBS 2 NEWS CHICAGO: Honored as the 2021 Edward R. Murrow winner for overall excellence, CBS 2 News Chicago brings you breaking news, weather, compelling exclusive content and award-winning investigative reports from the CBS 2 Investigators. Subscribe to CBS 2 News Chicago on YouTube : http://www.youtube.com/user/cbschicago CBS NEWS CHICAGO 24/7 LIVESTREAM: https://chicago.cbslocal.com/live/ CBS NEWS CHICAGO WEBSITE: http://chicago.cbslocal.com/ FACEBOOK: https://www.facebook.com/cbschicago TWITTER: https://twitter.com/CBSchicago GET THE CBS 2 NEWS APP: https://apps.cbslocal.com/chicago/
Hey everyone! In this video I'm going to be giving you a two-minute summary of the book Robert's Rules of Order by Henry M. Robert III. This book is an essential guide to understanding how to conduct meetings and make decisions in a fair and orderly way. Written by Henry M. Robert III, a former army officer, this book provides detailed instructions on how to efficiently and effectively manage meetings with a large group of people. It covers topics such as how to structure meetings, how to form committees, how to vote and how to resolve disputes. So if you're looking for a comprehensive guide to help you run your meetings and make decisions in a fair and efficient way, then Robert's Rules of Order is the book for you!
Robert III of Flanders (1249 – September 17, 1322), also called Robert of Béthune and nicknamed The Lion of Flanders (De Leeuw van Vlaanderen), was Count of Nevers 1273–1322 and Count of Flanders 1305–1322.
Robert was the oldest son of Guy of Dampierre from his first marriage with Matilda of Béthune. His father essentially transferred the reign of Flanders to him in November 1299, during his war with Philip IV of France. Both father and son were taken into captivity in May 1300, and Robert was not released until 1305.
Robert of Béthune gained military fame in Italy, when he fought at the side of his father-in-law, Charles I of Sicily (1265–1268) against the last Hohenstaufens, Manfred and Conradin. Together with his father he took part in 1270 in the Eighth Crusade, led by Saint Louis. After his return from the Crusade he continued to be a loyal aid for his father, politically and militarily, in the fight against the attempts of the French King Philip IV the Fair to add Flanders to the French crown lands.