CINXE.COM
Soirmag | Soirmag
<!DOCTYPE html> <html lang="fr" dir="ltr" xmlns:fb="http://ogp.me/ns/fb#" xmlns:og="http://ogp.me/ns#" xmlns:article="http://ogp.me/ns/article#" xmlns:book="http://ogp.me/ns/book#" xmlns:profile="http://ogp.me/ns/profile#" xmlns:video="http://ogp.me/ns/video#" xmlns:product="http://ogp.me/ns/product#" xmlns:media="http://search.yahoo.com/mrss/"> <head> <meta charset="utf-8"> <title>Soirmag | Soirmag</title> <link rel="profile" href="http://www.w3.org/1999/xhtml/vocab" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--[if IE]> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <![endif]--> <!-- var datalayer printed from html.tpl.php --> <script>dataLayer=[{"typeUser":"Anonymous", "typePage":"Term", "termValue":"Soirmag", "termVocabulary":"Catégories", "path":"abonnement/soirmag", "dpipagetitle":"Choisissez votre formule", "nodetitle":"", "userid":"", "memberStatus":"utilisateur anonyme", "role":"utilisateur anonyme", "nom_offre_conf":"", "emailhash":"", "sso_id":"", "member_status_v2":"anonyme", "statut":"Blocked", "usersince":"20241125", "nodeid":"", "Current_date":"20241125", "Canonicalurl":"https://espace-abonnement.soirmag.lesoir.be/abonnement/soirmag"}];</script> <!-- / datalayer --> <!-- var $head printed from html.tpl.php --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript"> //Hack Drupal </script> <script type="text/javascript"> const LogLevel = { DISABLE: 0, INFO: 1, DEBUG: 2, TRACE: 3, OVERWRITE: 4 }; const storageAvailable = function(type) { try { var storage = window[type], x = '__storage_test__'; storage.setItem(x, x); storage.removeItem(x); return true; } catch(e) { return e instanceof DOMException && ( // everything except Firefox e.code === 22 || // Firefox e.code === 1014 || // test name field too, because code might not be present // everything except Firefox e.name === 'QuotaExceededError' || // Firefox e.name === 'NS_ERROR_DOM_QUOTA_REACHED') && // acknowledge QuotaExceededError only if there's something already stored storage.length !== 0; } }; const enabledPubLog = function (level, service) { if(service !== 'undefined' && service !== null) { service = service.toUpperCase(); } if(storageAvailable('sessionStorage')) { sessionStorage.setItem(service, level); } }; const disabledPubLog = function (service) { if(service !== 'undefined' && service !== null) { service = service.toUpperCase(); } if(storageAvailable('sessionStorage')) { sessionStorage.setItem(service, LogLevel.DISABLE); } }; const pubLog = function (level, service, msg) { var serviceKey = service; if(service !== 'undefined' && service !== null) { serviceKey = service.toUpperCase(); service = service.toLowerCase(); } if(storageAvailable('sessionStorage')) { var lLevel = sessionStorage.getItem(serviceKey); if(level <= lLevel) { console.log(serviceKey + ":: "+msg); } } else { if( urlParams.has(service+'log') && level <= urlParams.get(service+'log') ) { console.log(serviceKey+":: "+msg); } } }; const checkLogLevel = function(level, service) { var serviceKey = service; if(service !== 'undefined' && service !== null) { serviceKey = service.toUpperCase(); } if(storageAvailable('sessionStorage')) { var lLevel = sessionStorage.getItem(serviceKey); if(level <= lLevel) { return true; } } return false; }; const getLogLevel = function(strLoglevel) { if (!strLoglevel) { return LogLevel.DISABLE; } let logLevel; switch (strLoglevel.toUpperCase()) { case "OVERWRITE" : logLevel = LogLevel.OVERWRITE; break; case "TRACE" : logLevel = LogLevel.TRACE; break; case "DEBUG" : logLevel = LogLevel.DEBUG; break; case "INFO" : logLevel = LogLevel.INFO; break; default: logLevel = LogLevel.DISABLE; } return logLevel; } const urlParams = new URLSearchParams(window.location.search); if( urlParams.has('dfplog') ) { enabledPubLog(getLogLevel(urlParams.get('dfplog')), 'dfp'); } if( urlParams.has('iaslog') ) { enabledPubLog(getLogLevel(urlParams.get('iaslog')), 'ias'); } if( urlParams.has('smartlog') ) { enabledPubLog(getLogLevel(urlParams.get('smartlog')), 'smart'); } if( urlParams.has('didomilog') ) { enabledPubLog(getLogLevel(urlParams.get('didomilog')), 'didomi'); } String.prototype.sansAccent = function(){ var accent = [ /[\300-\306]/g, /[\340-\346]/g, // A, a /[\310-\313]/g, /[\350-\353]/g, // E, e /[\314-\317]/g, /[\354-\357]/g, // I, i /[\322-\330]/g, /[\362-\370]/g, // O, o /[\331-\334]/g, /[\371-\374]/g, // U, u /[\321]/g, /[\361]/g, // N, n /[\307]/g, /[\347]/g, // C, c /[��]/g, /[��]/g,//oe ]; var noaccent = ['A','a','E','e','I','i','O','o','U','u','N','n','C','c', 'OE','oe']; var str = this; for(var i = 0; i < accent.length; i++){ str = str.replace(accent[i], noaccent[i]); } return str; } String.prototype.withoutSpecialChars = function(replacementChar) { return this.replace(/[^\w\/\ \u00C0-\u017F]/gi,replacementChar); } const transformText = function (input) { input = input.sansAccent(); input = input.replace(/[-_]/gi,' '); input = input.withoutSpecialChars(''); return input; } window.getCookie = function(cookieName) { let cookiesList = document.cookie.split(";"); for (let i = 0; i < cookiesList.length; i++) { if(cookiesList[i].trimStart().startsWith(cookieName)) { return cookiesList[i].trimStart(); } } } window.parseJwt = function(token) { var base64Url = token.split('.')[1]; var base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/'); var jsonPayload = decodeURIComponent(window.atob(base64).split('').map(function(c) { return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2); }).join('')); return JSON.parse(jsonPayload); } window.getJwtJson = function() { let jwtToken = (typeof JWTTokenName !== 'undefined') ? JWTTokenName : 'jwtToken'; let cookie = window.getCookie(jwtToken); if (cookie) { return parseJwt(cookie); } else { return false; } } window.getCookieById = function(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i <ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } </script> <script type="text/javascript"> window.didomiOnReady = window.didomiOnReady || []; window.didomiEventListeners = window.didomiEventListeners || []; window.drupalScripts = window.drupalScripts || []; //var dataLayer = dataLayer || []; var googletag = googletag || {}; googletag.cmd = googletag.cmd || []; window.gdprAppliesGlobally=true; </script> <script type="text/javascript"> window.didomiConfig = { website: { apiKey: 'ea3ddf6a-c025-4f24-9237-f872d80f6755', name: 'Le Soir', } }; </script> <script async id="spcloader" type="text/javascript" src="https://sdk.privacy-center.org/ea3ddf6a-c025-4f24-9237-f872d80f6755/loader.js?target=espace-abonnement.soirmag.lesoir.be"></script> <script type="text/javascript"> (function(){function a(e){if(!window.frames[e]){if(document.body&&document.body.firstChild){var t=document.body;var n=document.createElement("iframe");n.style.display="none";n.name=e;n.title=e;t.insertBefore(n,t.firstChild)} else{setTimeout(function(){a(e)},5)}}}function e(n,r,o,c,s){function e(e,t,n,a){if(typeof n!=="function"){return}if(!window[r]){window[r]=[]}var i=false;if(s){i=s(e,t,n)}if(!i){window[r].push({command:e,parameter:t,callback:n,version:a})}}e.stub=true;function t(a){if(!window[n]||window[n].stub!==true){return}if(!a.data){return} var i=typeof a.data==="string";var e;try{e=i?JSON.parse(a.data):a.data}catch(t){return}if(e[o]){var r=e[o];window[n](r.command,r.parameter,function(e,t){var n={};n[c]={returnValue:e,success:t,callId:r.callId};a.source.postMessage(i?JSON.stringify(n):n,"*")},r.version)}} if(typeof window[n]!=="function"){window[n]=e;if(window.addEventListener){window.addEventListener("message",t,false)}else{window.attachEvent("onmessage",t)}}}e("__tcfapi","__tcfapiBuffer","__tcfapiCall","__tcfapiReturn");a("__tcfapiLocator");})(); </script> <script type="text/javascript"> var mapTosync = new Map(); var didomiLoaded = false; const getGtmVendorStatus = function() { return { 'Selligent': Didomi.getUserConsentStatusForVendor('c:selligent-UcPkkRx4') , 'smartLook': Didomi.getUserConsentStatusForVendor('c:smartlook') , 'teads': Didomi.getUserConsentStatusForVendor('132') , 'Kameleoon': Didomi.getUserConsentStatusForVendor('820') , 'tradetracker': Didomi.getUserConsentStatusForVendor('c:tradetrac-rqFk6jHg') , 'optimize': Didomi.getUserConsentStatusForVendor('google') , 'piano': Didomi.getUserConsentStatusForVendor('c:piano') , 'rebelai': Didomi.getUserConsentStatusForVendor('c:rebelai-HYiEpAJV') , 'gads': Didomi.getUserConsentStatusForVendor('google') , 'Google': Didomi.getUserConsentStatusForVendor('google') , 'Hotjar': Didomi.getUserConsentStatusForVendor('c:hotjar') , 'Kameleoon': Didomi.getUserConsentStatusForVendor('820') , 'adform': Didomi.getUserConsentStatusForVendor('50') , 'adwords': Didomi.getUserConsentStatusForVendor('google') , 'cxense': Didomi.getUserConsentStatusForVendor('412') , 'Facebook': Didomi.getUserConsentStatusForVendor('c:facebook') }; }; const registerToCmp = function(vendorId, vendorName, callFunction, callAcceptFunction, callRefuseFunction ) { pubLog(LogLevel.TRACE, 'Didomi', "registerToCmp "+vendorId); mapTosync.set(vendorId, new Map([ ["id", vendorId], ["name", vendorName], ["status", 0], ["loaded", false], ["loadFunction", callFunction], ["acceptFunction", callAcceptFunction], ["refuseFunction", callRefuseFunction], ])); if (didomiLoaded) { pubLog(LogLevel.TRACE, 'Didomi', "registerToCmp load "+vendorId); callFunction(Didomi.getUserConsentStatusForVendor(vendorId)); mapTosync.get(vendorId).set("loaded", true); if (Didomi.getUserConsentStatusForVendor(vendorId)) { mapTosync.get(vendorId).set("status", 1); } else { mapTosync.get(vendorId).set("status", -1); } } }; const loadMapToSync = function (mapToSyncValue) { mapToSyncValue.get("loadFunction")(Didomi.getUserConsentStatusForVendor(mapToSyncValue.get("id"))); mapToSyncValue.set("loaded", true); if (Didomi.getUserConsentStatusForVendor(mapToSyncValue.get("id"))) { mapToSyncValue.set("status", 1); } else { mapToSyncValue.set("status", -1); } }; const timeoutToCmp = function() { pubLog(LogLevel.DEBUG, 'Didomi', "Timeout function called"); if (didomiLoaded) { pubLog(LogLevel.DEBUG, 'Didomi', "Timeout Didomi Loaded"); mapTosync.forEach( function(value, key) { if (!value.get("loaded") ) { pubLog(LogLevel.TRACE, 'Didomi', "Timeout Load " + key); loadMapToSync(value); } }); } else { setTimeout(timeoutToCmp,5000); } }; setTimeout(timeoutToCmp, 10000); window.didomiOnReady.push(function (Didomi) { pubLog(LogLevel.DEBUG, 'Didomi', "didomiOnReady start"); if(!Didomi.notice.isVisible()) { didomiLoaded = true; pubLog(LogLevel.DEBUG, 'Didomi', "didomiOnReady -> didomiLoaded"); dataLayer.push( {'event' : 'custom-didomi-loaded', 'vendors' : getGtmVendorStatus() } ); mapTosync.forEach( function(value, key) { pubLog(LogLevel.TRACE, 'Didomi', "didomiOnReady " + key); loadMapToSync(value); }); } if (typeof (Didomi.getUserConsentStatusForPurposeExtended) == 'undefined' || Didomi.getUserConsentStatusForPurposeExtended == null) { Didomi.getUserConsentStatusForPurposeExtended = function (purposeType) { // purposeTypeAssociations is defined from the custom JSON in the Didomi console let relatedPurposes = this.getConfig().purposeTypeAssociations[purposeType]; if (typeof (relatedPurposes) !== "undefined") { let purposesAllowed = true; let i = 0; while (purposesAllowed && i < relatedPurposes.length) { purposesAllowed = purposesAllowed && this.getUserConsentStatusForPurpose(relatedPurposes[i]); i++; } return purposesAllowed; } else { return this.getUserConsentStatusForPurpose(purposeType); } } } }); window.didomiEventListeners.push({ event: 'consent.changed', listener: function (context) { pubLog(LogLevel.DEBUG, 'Didomi', "consent.changed start"); if(!didomiLoaded) { didomiLoaded = true; pubLog(LogLevel.DEBUG, 'Didomi', "consent.changed -> didomiLoaded"); dataLayer.push( {'event' : 'custom-didomi-loaded', 'vendors' : getGtmVendorStatus() } ); } else { dataLayer.push( {'event' : 'custom-didomi-changed', 'vendors' : getGtmVendorStatus() } ); } mapTosync.forEach( function(value, key) { if (!value.get("loaded") ) { pubLog(LogLevel.TRACE, 'Didomi', "consent.changed "+key); loadMapToSync(value); } else if (Didomi.getUserConsentStatusForVendor(value.get("id") )) { if(typeof value.get("acceptFunction") != 'undefined') { value.get("acceptFunction")(); } value.set("status", 1); } else { if(typeof value.get("refuseFunction") != 'undefined') { value.get("refuseFunction")(); } value.set("status", -1); } }); for (var mapTosyncKey in mapTosync.keys()) { if (!mapTosync.get(mapTosyncKey).get("loaded") ) { pubLog(LogLevel.TRACE, 'Didomi', "consent.changed "+mapTosyncKey); mapTosync.get(mapTosyncKey).get("loadFunction")(Didomi.getUserConsentStatusForVendor(mapTosync.get(mapTosyncKey).get("id") )); mapTosync.get(mapTosyncKey).set("loaded", true); if (Didomi.getUserConsentStatusForVendor(mapTosync.get(mapTosyncKey).get("id"))) { mapTosync.get(mapTosyncKey).set("status", 1); } else { mapTosync.get(mapTosyncKey).set("status", -1); } } else if (Didomi.getUserConsentStatusForVendor(mapTosync.get(mapTosyncKey).get("id") )) { if(typeof mapTosync.get(mapTosyncKey).get("acceptFunction") != 'undefined') { mapTosync.get(mapTosyncKey).get("acceptFunction")(); } mapTosync.get(mapTosyncKey).set("status", 1); } else { if(typeof mapTosync.get(mapTosyncKey).get("refuseFunction") != 'undefined') { mapTosync.get(mapTosyncKey).get("refuseFunction")(); } mapTosync.get(mapTosyncKey).set("status", -1); } } } }); const showConsentVendors = function() { if (typeof (Didomi) != 'undefined') Didomi.preferences.show('vendors'); } </script> <!-- Init var Slot --> <!-- prebidsWrapperJs --> <script type="text/javascript"> var adUnitPath = "No AdUnit defined"; </script> <!-- // builder=PrebidsWrapperTagBuilder, site=PCGBE, pageType=page, context=/Catégories/Soirmag, position=, edition=, domain=espace-abonnement.soirmag.lesoir.be --> <!-- Rossel Backbone--> <!--dBlockGTMId--> <script async="async" type="text/javascript"> var cX = cX || {}; cX.callQueue = cX.callQueue || []; </script> <!-- Custom functions --> <script type="text/javascript"> var isConsentPub = function() { return true; // Managed by Didomi } var isConsentDFP = function() { try { if (typeof Didomi != 'undefined') { return Didomi.getUserConsentStatusForVendor('google'); } else { return false; } } catch (e) { return false; } } var canDisplayAd = function() { return typeof cookieConsentExists == "undefined" || cookieConsentExists("pub"); } var showConsentPopup = function() { Didomi.preferences.show(); } </script> <script type="didomi/javascript" data-purposes="cookies"> </script> <!-- Cxense --> <script type="didomi/javascript" data-purposes="cookies" data-vendor="iab:412"> const siteId = '1145289076429052297'; const persistedQueryId = 'c281d90539d1ec4941b8c4791914fa10067389ae'; const cxenseOrigin = ''; if (isConsentPub()) { cX.callQueue.push(['setSiteId', siteId]); // <-- Insert the correct site identifier here! if (typeof dataLayer !== 'undefined' && typeof dataLayer[0] !== 'undefined' && ( (typeof dataLayer[0]['emailhash'] !== 'undefined' && dataLayer[0]['emailhash'] !== '') || (typeof dataLayer[0]['emailHash'] !== 'undefined' && dataLayer[0]['emailHash'] !== '') ) ) { cX.callQueue.push(['setCustomParameters', {'registered': 'TRUE'}]); if (typeof dataLayer[0]['emailhash'] !== 'undefined' && dataLayer[0]['emailhash'] !== '') { cX.callQueue.push(['addExternalId', {'id': dataLayer[0]['emailhash'], 'type': 'rbf'}]); } else if (typeof dataLayer[0]['emailHash'] !== 'undefined' && dataLayer[0]['emailHash'] !== '') { cX.callQueue.push(['addExternalId', {'id': dataLayer[0]['emailHash'], 'type': 'rbf'}]); } } else { cX.callQueue.push(['setCustomParameters', {'registered': 'FALSE'}]); } cX.callQueue.push(['sendPageViewEvent']); } </script> <script type="didomi/javascript" data-purposes="cookies" data-vendor="iab:412"> if (isConsentPub()) { (function (d, s, e, t) { e = d.createElement(s); e.type = 'text/java' + s; e.async = 'async'; e.src = 'http' + ('https:' === location.protocol ? 's://s' : '://') + 'cdn.cxense.com/cx.js'; t = d.getElementsByTagName(s)[0]; t.parentNode.insertBefore(e, t); })(document, 'script'); } </script> <script src="https://news.google.com/swg/js/v1/swg.js" async="1"></script> <script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"NewsArticle","isAccessibleForFree":false,"publisher":{"@type":"Organization","name":"Soirmag"},"hasPart":{"@type":"WebPageElement","isAccessibleForFree":"False","cssSelector":""},"isPartOf":{"@type":["CreativeWork","Product"],"name":"Soirmag","productID":"lesoir.be:ena"}}</script><link rel="shortcut icon" href="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketingSoirmag/favicon.ico" type="image/vnd.microsoft.icon" /> <meta property="og:image" content="[node:field_visuel_grand]" /> <meta property="og:description" content="Tout le contenu de la rédaction en illimité avec cette offre." /> <meta name="description" content="Page d'accueil de Soirmag" /> <meta name="generator" content="Drupal 7 (http://drupal.org)" /> <link rel="canonical" href="https://espace-abonnement.soirmag.lesoir.be/abonnement/soirmag" /> <link rel="shortlink" href="https://espace-abonnement.soirmag.lesoir.be/taxonomy/term/29" /> <meta property="og:site_name" content="Soirmag" /> <meta property="og:type" content="article" /> <meta property="og:url" content="https://espace-abonnement.soirmag.lesoir.be/abonnement/soirmag" /> <meta property="og:title" content="Soirmag" /> <meta property="og:description" content="Page d'accueil de Soirmag" /> <meta name="twitter:card" content="summary" /> <meta name="twitter:url" content="https://espace-abonnement.soirmag.lesoir.be/abonnement/soirmag" /> <meta name="twitter:title" content="Soirmag" /> <meta name="twitter:description" content="Page d'accueil de Soirmag" /> <meta itemprop="name" content="Soirmag" /> <meta itemprop="description" content="Page d'accueil de Soirmag" /> <!-- / $head --> <!-- var $styles printed from html.tpl.php --> <link type="text/css" rel="stylesheet" href="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/css/css_lQaZfjVpwP_oGNqdtWCSpJT1EMqXdMiU84ekLLxQnc4.css" media="all" /> <link type="text/css" rel="stylesheet" href="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/css/css_mWVNpqaLwhmYi7SmQe4hzYHMptXFNStHBZHC0dGtToY.css" media="all" /> <link type="text/css" rel="stylesheet" href="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/css/css_W1DULeIQK_6DC0mxWeJhzzu1S-yKY4dUsqwqHIyu5Eo.css" media="all" /> <link type="text/css" rel="stylesheet" href="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/css/css_NqqjhaMv44ZkwzadMIyoK0os2TeXKe7XmT4cHcIq68w.css" media="all" /> <!-- / $styles --> <!-- <link href="/sites/all/themes/custom/boutique/bootstrapMarketingSoirmag/css/main.css" rel="stylesheet" media="screen" /> --> <!-- var $scripts printed from html.tpl.php --> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/modules/dpi247CMS/third/jquery_update/replace/jquery/1.10/jquery.min.js?v=1.10.2"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/misc/jquery-extend-3.4.0.js?v=1.10.2"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/misc/jquery-html-prefilter-3.5.0-backport.js?v=1.10.2"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/misc/jquery.once.js?v=1.2"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/misc/drupal.js?snamsb"></script> <script src="https://static.qiota.com/assets/getQiota.js"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/modules/dpi247CMS/rossel/dpipub/scripts/stat_callback.js?snamsb"></script> <script>document.createElement( "picture" );</script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/languages/fr_iUq8eWKjPpd7YEW5usJdVg_p7CKJFfQUIF0wyxpVI1w.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/modules/custom/boutique/boutique_companion/js/boutique_companion_global.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/modules/custom/cms_marketing_common/cms_marketing_companion/cms_marketing_companion_global_scripts.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/modules/custom/boutique/boutique_cxense/js/boutique_cxense.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/modules/custom/cms_marketing_common/datalayer/js/datalayer.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/affix.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/alert.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/button.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/carousel.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/collapse.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/dropdown.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/modal.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/tooltip.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/popover.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/scrollspy.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/tab.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/bootstrap/transition.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/slick.min.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/horizon-swiper.min.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/material.min.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/ripples.min.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/parallax.min.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/polyfill-array-filter.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/polyfill-array-map.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/polyfill-foreach.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/jquery.exists.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/overlay.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/message-old-browser.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/main.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketing/js/init.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/custom/boutique/bootstrapMarketingSoirmag/js/lib.js?snamsb"></script> <script>jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","setHasJsCookie":0,"ajaxPageState":{"theme":"bootstrapMarketingSoirmag","theme_token":"RY-mcs1R68dPcdTEJi8rqHIkG9XBPTHNI6fwoSmXerY","js":{"sites\/all\/modules\/third\/picture\/picturefill2\/picturefill.min.js":1,"sites\/all\/modules\/third\/picture\/picture.min.js":1,"0":1,"1":1,"sites\/all\/modules\/custom\/boutique\/offre_swg\/js\/offer-swg.js":1,"sites\/all\/modules\/custom\/boutique\/offre_swg\/js\/conditional.js":1,"sites\/all\/themes\/bootstrap\/js\/bootstrap.js":1,"sites\/all\/modules\/dpi247CMS\/third\/jquery_update\/replace\/jquery\/1.10\/jquery.min.js":1,"misc\/jquery-extend-3.4.0.js":1,"misc\/jquery-html-prefilter-3.5.0-backport.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"https:\/\/static.qiota.com\/assets\/getQiota.js":1,"sites\/all\/modules\/dpi247CMS\/rossel\/dpipub\/scripts\/stat_callback.js":1,"2":1,"public:\/\/languages\/fr_iUq8eWKjPpd7YEW5usJdVg_p7CKJFfQUIF0wyxpVI1w.js":1,"sites\/all\/modules\/custom\/boutique\/boutique_companion\/js\/boutique_companion_global.js":1,"sites\/all\/modules\/custom\/cms_marketing_common\/cms_marketing_companion\/cms_marketing_companion_global_scripts.js":1,"sites\/all\/modules\/custom\/boutique\/boutique_cxense\/js\/boutique_cxense.js":1,"sites\/all\/modules\/custom\/cms_marketing_common\/datalayer\/js\/datalayer.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/affix.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/alert.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/button.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/carousel.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/collapse.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/dropdown.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/modal.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/tooltip.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/popover.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/scrollspy.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/tab.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/bootstrap\/transition.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/slick.min.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/horizon-swiper.min.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/material.min.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/ripples.min.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/parallax.min.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/polyfill-array-filter.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/polyfill-array-map.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/polyfill-foreach.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/jquery.exists.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/overlay.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/message-old-browser.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/main.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketing\/js\/init.js":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketingSoirmag\/js\/lib.js":1},"css":{"modules\/system\/system.base.css":1,"sites\/all\/modules\/dpi247CMS\/third\/date\/date_api\/date.css":1,"sites\/all\/modules\/dpi247CMS\/third\/date\/date_popup\/themes\/datepicker.1.7.css":1,"sites\/all\/modules\/dpi247CMS\/third\/date\/date_repeat_field\/date_repeat_field.css":1,"modules\/field\/theme\/field.css":1,"modules\/node\/node.css":1,"sites\/all\/modules\/custom\/boutique\/offre_prospect\/css\/prospect.css":1,"sites\/all\/modules\/third\/picture\/picture_wysiwyg.css":1,"sites\/all\/modules\/dpi247CMS\/third\/views\/css\/views.css":1,"sites\/all\/modules\/dpi247CMS\/third\/ckeditor\/css\/ckeditor.css":1,"sites\/all\/modules\/dpi247CMS\/mods\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/dpi247CMS\/third\/panels\/css\/panels.css":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketingSoirmag\/css\/sso.css":1,"sites\/all\/modules\/custom\/cms_marketing_common\/cms_marketing_companion\/css\/sandbox.css":1,"sites\/all\/themes\/custom\/boutique\/bootstrapMarketingSoirmag\/css\/main.css":1}},"processing":"Traitement en cours ...","cxense_click_triggers":{"offres":{"nid-2222":{"nid":"2222","productObj":{"brand":"Offre duBus","category":"","name":"","origin":"rob-pcg","position":"1"}},"nid-2253":{"nid":"2253","productObj":{"brand":"Offre Bastogne","category":"","name":"","origin":"rob-pcg","position":"2"}},"nid-1843":{"nid":"1843","productObj":{"brand":"100% digital","category":"","name":"","origin":"rob-pcg","position":"3"}}}},"datalayer_click_triggers":{"offres":{"nid-2222":{"nid":"2222","productObj":{"productName":"Offre duBus","productId":"C5156_10","price":"81","brand":"","category":"","position":"1","url":"https:\/\/espace-abonnement.soirmag.lesoir.be\/content\/offre-dubus-2"}},"nid-2253":{"nid":"2253","productObj":{"productName":"Offre Bastogne","productId":"C5156_10","price":"81","brand":"","category":"","position":"2","url":"https:\/\/espace-abonnement.soirmag.lesoir.be\/content\/offre-bastogne"}},"nid-1843":{"nid":"1843","productObj":{"productName":"100% digital","productId":"C4986_10","price":"36","brand":"","category":"","position":"3","url":"https:\/\/espace-abonnement.soirmag.lesoir.be\/content\/100-digital"}}}},"picture":{"mappings":[["slider","slider"],["offres","offres"],["carousel","carousel"],["Not Set","not_set"]],"label":"Image size (required)"},"dpipub":{"detectAdBlock":0,"popupPageView":2,"popupText":"An ad blocker has been detected, please disable it for this site."},"offre_swg":{"active":1,"settings":{"applicationID":"LS_eng_prod","active_data_markup":1,"publicationID":"lesoir.be","product":"ena","active_entitlements":0,"url_checkloginid":"https:\/\/oauth-api.rossel.be\/v2\/application\/LS_eng_prod\/checkSubscriptionToken","autologin_consent":0,"url_autologin":"https:\/\/login.lesoir.be\/html\/externalLogin","url_account":"https:\/\/oauth-api.lesoir.be\/social\/google","oauth_response":"token","show_subscribe_with":0,"confirmation_url":"http:\/\/mon-compte.lesoir.be\/mon-profil-swg","url_login":"https:\/\/ssov3.lesoir.be\/product\/register?product_id=be_soirmag"}},"bootstrap":{"anchorsFix":0,"anchorsSmoothScrolling":0,"formHasError":1,"popoverEnabled":1,"popoverOptions":{"animation":1,"html":0,"placement":"right","selector":"","trigger":"click","triggerAutoclose":1,"title":"","content":"","delay":0,"container":"body"},"tooltipEnabled":1,"tooltipOptions":{"animation":1,"html":0,"placement":"auto left","selector":"","trigger":"hover focus","delay":0,"container":"body"}}});</script> <!-- / $scripts --> <!-- var $gtm_snippet_script printed from html.tpl.php --> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-T4L3LW');</script> <!-- End Google Tag Manager --> <!-- / $gtm_snippet_script --> </head> <body class="html not-front not-logged-in no-sidebars page-taxonomy page-taxonomy-term page-taxonomy-term- page-taxonomy-term-29 domain-soirmag-espace-abonnement-lavoix-com"> <div id="skip-link"> <a href="#main-content" class="element-invisible element-focusable">Aller au contenu principal</a> </div> <!-- var gtm_snippet_noscript printed from html.tpl.php --> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-T4L3LW" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <!-- / gtm_snippet_noscript --> <!-- var $page_top printed from html.tpl.php --> <!-- / var $page_top --> <!-- var $page printed from html.tpl.php --> <header id="navbar" role="banner" class=" navbar navbar-inverse"> <div id="toolbar_wrapper"> <div id="toolbar_wrapper"> <ul class="sso sso-non-connecte"> <li class="sso-logo"><a href="https://soirmag.lesoir.be/"><img src="/sites/all/themes/custom/boutique/bootstrapMarketingSoirmag/img/logo.svg"></a></li> <li class="sso-user-menu"> <a href="#" class="sso-user-label">Bonjour</a> <ul class="sso-menu"> <li class="sso-menu-item"><a class="jemeconnecte" href="https://ssov3.lesoir.be/product/redirect?product_id=be_soirmag&return_to=https%3A%2F%2Fespace-abonnement.soirmag.lesoir.be%2Fabonnement%2Fsoirmag" alt="https://ssov3.lesoir.be/product/redirect?product_id=be_soirmag&return_to=https%3A%2F%2Fespace-abonnement.soirmag.lesoir.be%2Fabonnement%2Fsoirmag" title="Je me connecte">Je me connecte</a></li> </ul> </li> </ul> </div> </div> <div class="boutique-title"> <a class="logo navbar-btn" href="/" title="Accueil"> <img src="/sites/all/themes/custom/boutique/bootstrapMarketingSoirmag/img/logo.png" alt="Accueil" /> </a> <h1> Abonnements </h1> </div> <div class="region region-navigation"> <section id="block-block-25" class="block block-block clearfix"> <div class="cm-call"><span>Des questions ?<br /> Appelez-nous au <a href="+3226162000">02/616.20.00</a></span> <img alt="Appelez-nous" class="cm-call__img" src="/sites/all/themes/custom/boutique/bootstrapMarketingSoirmag/img/appelez.png" /></div> </section> </div> </header> <div class="call_center"> <div class="region region-header-right"> <section id="block-block-2" class="block block-block clearfix"> <div class="box_call_center"> <span class="cm-call"></span> <div class="cm-box"> <p class="deja-abonne">Déjà abonné au magazine Soir mag? <br> <a href="https://journal.lesoir.be/soirmag/">J'accède au Soir mag numérique</a> </p> <h2>Une question?</h2> <p>Contactez notre service clientèle au <strong>02/616.20.00</strong><br> <em>(du lundi au vendredi de 8h à 18h)</em><br> ou <a href="mailto:abonnements@soirmag.be">envoyez-nous un message</a>. </p> </div> </div> </section> </div> </div> <div id="cm-main-menu"> <div class="container"> <ul class="menu nav navbar-nav"><li class="first leaf"><a href="/">Les offres d'abonnement</a></li> <li class="last leaf"><a href="/uuid/node/d1211bd7-2835-4c64-b6c8-40cb77fc7f1d">Le magazine de la semaine</a></li> </ul> </div> </div> <nav role="navigation" id="cm-menu-formule"> <div class="container"> <ul class="menu nav navbar-nav secondary"></ul> </div> </nav> <div class="cm-messages "> </div> <div class="cm-main-title " > <div class="container"> <div class="row"> <div class="cm-title"> <h1>Choisissez votre formule</h1> </div> </div> </div> </div> <div class="main-container container-fluid "> <div class="row"> <section class="webform-page-0"> <div id="oneslide"></div> <div class="region region-content"> <section id="block-system-main" class="block block-system clearfix"> <div class="bootstrap-onecol-stacked" > <div class="row top"> <div class="panel-pane pane-custom pane-1" > <h2 class="pane-title"> Titre Offres </h2> <div class="pane-content"> <h1 class="main-title" style="text-align:center; padding: 0 1rem;">Choisissez la formule qui vous convient le mieux :</h1> </div> </div> </div> <div class="row middle middle-top"> <div class="panel-pane pane-views-panes pane-taxonomy-term-reordered-panel-pane-2" > <h2 class="pane-title"> Soirmag </h2> <div class="pane-content"> <div class="view view-taxonomy-term-reordered view-id-taxonomy_term_reordered view-display-id-panel_pane_2 cm-top-offres view-dom-id-87ec794b4cf67bbc2e38695ae54e4a0e"> <div class="view-content"> <div class="wrap-offre"> <h3 class="surtitre">Papier + numérique</h3> <div class="box-offre nid-2222 "> <a href="/content/offre-dubus-2"> <h2><span>Offre duBus</span></h2> <picture class="img-responsive"> <!--[if IE 9]><video style="display: none;"><![endif]--> <source srcset="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-sm-min_1x/public/visuels_petits/dessin_dubus.jpeg?timestamp=1727335940 1x" media="(max-width: 991px)" /> <source srcset="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-md-min_1x/public/visuels_petits/dessin_dubus.jpeg?timestamp=1727335940 1x" media="(min-width: 992px)" /> <!--[if IE 9]></video><![endif]--> <!--[if lt IE 9]> <img class="img-responsive" src="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-md-min_1x/public/visuels_petits/dessin_dubus.jpeg?timestamp=1727335940" alt="" title="" /> <![endif]--> <!--[if !lt IE 9]><!--> <img class="img-responsive" srcset="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-md-min_1x/public/visuels_petits/dessin_dubus.jpeg?timestamp=1727335940 288w" alt="" title="" /> <!-- <![endif]--> </picture> <p>Votre magazine livré chaque semaine + tout le contenu disponible à tout moment sous format digital.</p> <div class='price'><div class="price-prefixe">Abonnez-vous pour</div><strong class="price-euro">155 € </strong><span class="price-suffixe">pour 12 mois </span><div class="price-barre-prefixe"></div><div class="price_barre">192,40 €</div></div> <span class="btn"></span> </a> </div> <div class="box-swg-hidden"> <button class="swg-button" data-swg-product-skus=""></button> </div> </div> <div class="wrap-offre"> <h3 class="surtitre">Papier + numérique</h3> <div class="box-offre nid-2253 "> <a href="/content/offre-bastogne"> <h2><span>Offre Bastogne</span></h2> <picture class="img-responsive"> <!--[if IE 9]><video style="display: none;"><![endif]--> <source srcset="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-sm-min_1x/public/visuels_petits/bastogne_et_ses_heros_americains.jpg?timestamp=1732110453 1x" media="(max-width: 991px)" /> <source srcset="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-md-min_1x/public/visuels_petits/bastogne_et_ses_heros_americains.jpg?timestamp=1732110453 1x" media="(min-width: 992px)" /> <!--[if IE 9]></video><![endif]--> <!--[if lt IE 9]> <img class="img-responsive" src="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-md-min_1x/public/visuels_petits/bastogne_et_ses_heros_americains.jpg?timestamp=1732110453" alt="" title="" /> <![endif]--> <!--[if !lt IE 9]><!--> <img class="img-responsive" srcset="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-md-min_1x/public/visuels_petits/bastogne_et_ses_heros_americains.jpg?timestamp=1732110453 288w" alt="" title="" /> <!-- <![endif]--> </picture> <p>Votre magazine livré chaque semaine + tout le contenu disponible à tout moment sous format digital.</p> <div class='price'><div class="price-prefixe">Abonnez-vous pour</div><strong class="price-euro">81 € </strong><span class="price-suffixe">pour 6 mois </span><div class="price-barre-prefixe"></div><div class="price_barre">96,20 €</div></div> <span class="btn"></span> </a> </div> <div class="box-swg-hidden"> <button class="swg-button" data-swg-product-skus=""></button> </div> </div> <div class="wrap-offre"> <h3 class="surtitre">100 % numérique</h3> <div class="box-offre nid-1843 "> <a href="/content/100-digital"> <h2><span>100% digital</span></h2> <picture class="img-responsive"> <!--[if IE 9]><video style="display: none;"><![endif]--> <source srcset="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-sm-min_1x/public/visuels_petits/56271-v2-digit.png?timestamp=1675349554 1x" media="(max-width: 991px)" /> <source srcset="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-md-min_1x/public/visuels_petits/56271-v2-digit.png?timestamp=1675349554 1x" media="(min-width: 992px)" /> <!--[if IE 9]></video><![endif]--> <!--[if lt IE 9]> <img class="img-responsive" src="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-md-min_1x/public/visuels_petits/56271-v2-digit.png?timestamp=1675349554" alt="" title="" /> <![endif]--> <!--[if !lt IE 9]><!--> <img class="img-responsive" srcset="https://espace-abonnement.soirmag.lesoir.be/sites/default/files/styles/offresbreakpoints_theme_bootstrap_screen-md-min_1x/public/visuels_petits/56271-v2-digit.png?timestamp=1675349554 288w" alt="" title="" /> <!-- <![endif]--> </picture> <p>Tout le contenu digital à tout moment sur votre smartphone, ordinateur ou tablette.</p> <div class='price'><div class="price-prefixe">Abonnez-vous pour</div><strong class="price-euro">3 €</strong><span class="price-suffixe">par mois</span><div class="price-barre-prefixe"></div><div class="price_barre">5 €</div></div> <span class="btn"></span> </a> </div> <div class="box-swg-hidden"> <button class="swg-button" data-swg-product-skus=""></button> </div> </div> </div> </div> </div> </div> </div> <div class="row middle middle-bottom"> </div> <div class="row bottom"> </div> </div> </section> </div> </section> </div> </div> <a href="#toolbar_wrapper" id="backtotop"></a> <footer class="footer"> <div class="region region-footer"> <section id="block-block-9" class="block block-block clearfix"> <!-- <div class="gr-footer-menu"> <ul> <li class="gr-footer-left">© Rossel & Cie - 2023</li> <li><a href="/cgu">CGU</a></li> <li><a href="/cgv">CGV</a></li> <li><a href="http://www.rossel.be/mentions-legales/cookies-1/">Cookies</a></li> <li><a href="http://www.rossel.be/mentions-legales/politique-protection-vie-privee-1/">Vie privée</a></li> </ul> </div>--> <r-menu class="r--menu-menu-footer-le-soir" ><div class="r-footer--copyright">© Rossel & Cie - 2023 </div> <r-menu--item class="first leaf"><a href="/cgu" class="r-menu--link"> CGU </a></r-menu--item> <r-menu--item class="leaf"><a href="/cgv" class="r-menu--link"> CGV </a></r-menu--item> <r-menu--item class="leaf"><a href="http://www.rossel.be/mentions-legales/cookies-1/" class="r-menu--link"> Cookies </a></r-menu--item> <r-menu--item class="leaf"><a class="cookies_didomi r-menu--link" onclick="showConsentPopup();" style="cursor: pointer"> Gérer les cookies </a></r-menu--item> <r-menu--item class="last leaf"><a href="http://www.rossel.be/mentions-legales/politique-protection-vie-privee-1/" class="r-menu--link"> Vie privée </a></r-menu--item> </r-menu> <style> </style> </section> </div> </footer> <!-- / var $page --> <!-- var $page_bottom printed from html.tpl.php --> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/modules/third/picture/picturefill2/picturefill.min.js?v=2.3.1"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/modules/third/picture/picture.min.js?v=7.98"></script> <script> if( typeof(registerToCmp) !== 'undefined' && registerToCmp != 'undefind') { registerToCmp('productimpression', 'productImpression', function() { dataLayer.push({ 'event': 'productImpression', 'ecommerce': { 'currencyCode': 'EUR', 'impressions': [ { "name": "", "id": "C5156_10", "price": "81", "brand": "Offre duBus", "category": "", "variant": "", "list": "Kiosque", "position": 1 }, { "name": "", "id": "C5156_10", "price": "81", "brand": "Offre Bastogne", "category": "", "variant": "", "list": "Kiosque", "position": 2 }, { "name": "", "id": "C4986_10", "price": "36", "brand": "100% digital", "category": "", "variant": "", "list": "Kiosque", "position": 3 } ] } }); if(typeof(Drupal.settings.datalayer) !== 'undefined' && typeof(Drupal.settings.datalayer.debugMode) !== 'undefined' && Drupal.settings.datalayer.debugMode){ console.debug('Mise à jour du datalayer effectuée :'); console.debug(dataLayer[dataLayer.length-1]); } }); }else{ dataLayer.push({ 'event': 'productImpression', 'ecommerce': { 'currencyCode': 'EUR', 'impressions': [ { "name": "", "id": "C5156_10", "price": "81", "brand": "Offre duBus", "category": "", "variant": "", "list": "Kiosque", "position": 1 }, { "name": "", "id": "C5156_10", "price": "81", "brand": "Offre Bastogne", "category": "", "variant": "", "list": "Kiosque", "position": 2 }, { "name": "", "id": "C4986_10", "price": "36", "brand": "100% digital", "category": "", "variant": "", "list": "Kiosque", "position": 3 } ] } }); if(typeof(Drupal.settings.datalayer) !== 'undefined' && typeof(Drupal.settings.datalayer.debugMode) !== 'undefined' && Drupal.settings.datalayer.debugMode){ console.debug('Mise à jour du datalayer effectuée :'); console.debug(dataLayer[dataLayer.length-1]); } } </script> <script> if( typeof(registerToCmp) !== 'undefined' && registerToCmp != 'undefind') { registerToCmp('productimpression', 'productImpression', function() { dataLayer.push({ 'event': 'productImpression', 'ecommerce': { 'currencyCode': 'EUR', 'impressions': [ { "name": "", "id": "C5156_10", "price": "81", "brand": "Offre duBus", "category": "", "variant": "", "list": "Kiosque", "position": 1 }, { "name": "", "id": "C5156_10", "price": "81", "brand": "Offre Bastogne", "category": "", "variant": "", "list": "Kiosque", "position": 2 }, { "name": "", "id": "C4986_10", "price": "36", "brand": "100% digital", "category": "", "variant": "", "list": "Kiosque", "position": 3 } ] } }); if(typeof(Drupal.settings.datalayer) !== 'undefined' && typeof(Drupal.settings.datalayer.debugMode) !== 'undefined' && Drupal.settings.datalayer.debugMode){ console.debug('Mise à jour du datalayer effectuée :'); console.debug(dataLayer[dataLayer.length-1]); } }); }else{ dataLayer.push({ 'event': 'productImpression', 'ecommerce': { 'currencyCode': 'EUR', 'impressions': [ { "name": "", "id": "C5156_10", "price": "81", "brand": "Offre duBus", "category": "", "variant": "", "list": "Kiosque", "position": 1 }, { "name": "", "id": "C5156_10", "price": "81", "brand": "Offre Bastogne", "category": "", "variant": "", "list": "Kiosque", "position": 2 }, { "name": "", "id": "C4986_10", "price": "36", "brand": "100% digital", "category": "", "variant": "", "list": "Kiosque", "position": 3 } ] } }); if(typeof(Drupal.settings.datalayer) !== 'undefined' && typeof(Drupal.settings.datalayer.debugMode) !== 'undefined' && Drupal.settings.datalayer.debugMode){ console.debug('Mise à jour du datalayer effectuée :'); console.debug(dataLayer[dataLayer.length-1]); } } </script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/modules/custom/boutique/offre_swg/js/offer-swg.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/modules/custom/boutique/offre_swg/js/conditional.js?snamsb"></script> <script src="https://espace-abonnement.soirmag.lesoir.be/sites/all/themes/bootstrap/js/bootstrap.js?snamsb"></script> <!-- / var $page_bottom --> </body> </html>