diff --git a/consent.js b/consent.js new file mode 100644 index 00000000..606880fd --- /dev/null +++ b/consent.js @@ -0,0 +1,90 @@ +/* MSOS cookie-consent banner (GDPR / Google Consent Mode v2). + * Non-blocking bottom card. Remembers the choice in localStorage. On "Accept" + * it grants analytics consent so GA4 (loaded denied-by-default in ) can + * set cookies; on "Decline" it stays denied. Trilingual, self-contained, + * no dependencies. Re-open anytime via window.msosOpenConsent(). */ +(function () { + var KEY = 'msos-consent'; + + // Language from (Slovene folder /si/ uses lang="sl"). + var docLang = (document.documentElement.getAttribute('lang') || 'en').toLowerCase(); + var lang = docLang === 'sl' ? 'si' : (['en', 'mk', 'si'].indexOf(docLang) === -1 ? 'en' : docLang); + + var T = { + en: { text: 'We use cookies to measure how the site is used and improve it. You can accept or decline analytics cookies.', + accept: 'Accept', decline: 'Decline', policy: 'Cookie policy', aria: 'Cookie consent' }, + mk: { text: 'Користиме колачиња за да измериме како се користи страницата и да ја подобриме. Можете да ги прифатите или одбиете аналитичките колачиња.', + accept: 'Прифати', decline: 'Одбиј', policy: 'Политика за колачиња', aria: 'Согласност за колачиња' }, + si: { text: 'Uporabljamo piškotke, da izmerimo, kako se stran uporablja, in jo izboljšamo. Analitične piškotke lahko sprejmete ali zavrnete.', + accept: 'Sprejmi', decline: 'Zavrni', policy: 'Politika piškotkov', aria: 'Soglasje za piškotke' } + }; + var t = T[lang]; + var policyHref = '/' + lang + '/cookie-policy/'; + + function gtagSafe() { window.dataLayer = window.dataLayer || []; window.gtag = window.gtag || function () { window.dataLayer.push(arguments); }; } + + function grant() { + gtagSafe(); + window.gtag('consent', 'update', { + ad_storage: 'granted', ad_user_data: 'granted', + ad_personalization: 'granted', analytics_storage: 'granted' + }); + } + + function injectStyles() { + if (document.getElementById('msos-cc-style')) return; + var css = '' + + '.msos-cc{position:fixed;left:16px;right:16px;bottom:16px;z-index:9999;max-width:560px;margin:0 auto;' + + 'background:#fff;border:1px solid #EAECF0;border-radius:14px;box-shadow:0 12px 32px rgba(16,24,40,.14);' + + "padding:18px 20px;font-family:'Inter',system-ui,sans-serif;animation:msosccin .25s ease-out}" + + '@keyframes msosccin{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}' + + '.msos-cc p{margin:0 0 14px;font-size:14px;line-height:21px;color:#475467}' + + '.msos-cc a{color:#2D738C;font-weight:600;text-decoration:none}.msos-cc a:hover{text-decoration:underline}' + + '.msos-cc-row{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap}' + + '.msos-cc button{font-family:inherit;font-size:14px;font-weight:600;border-radius:8px;padding:9px 18px;' + + 'cursor:pointer;border:1px solid transparent;transition:background .15s,color .15s,border-color .15s}' + + '.msos-cc-accept{background:#2D738C;color:#fff}.msos-cc-accept:hover{background:#255f74}' + + '.msos-cc-decline{background:#fff;border-color:#D0D5DD;color:#344054}.msos-cc-decline:hover{background:#F9FAFB}' + + '@media(max-width:520px){.msos-cc-row{justify-content:stretch}.msos-cc button{flex:1}}'; + var s = document.createElement('style'); + s.id = 'msos-cc-style'; + s.textContent = css; + document.head.appendChild(s); + } + + function close(el) { if (el && el.parentNode) el.parentNode.removeChild(el); } + + function show() { + injectStyles(); + var box = document.createElement('div'); + box.className = 'msos-cc'; + box.setAttribute('role', 'dialog'); + box.setAttribute('aria-label', t.aria); + box.innerHTML = + '

' + t.text + ' ' + t.policy + '

' + + '
' + + '' + + '' + + '
'; + box.querySelector('.msos-cc-accept').addEventListener('click', function () { + try { localStorage.setItem(KEY, 'granted'); } catch (e) {} + grant(); + close(box); + }); + box.querySelector('.msos-cc-decline').addEventListener('click', function () { + try { localStorage.setItem(KEY, 'denied'); } catch (e) {} + close(box); + }); + document.body.appendChild(box); + } + + // Let a "manage cookies" link re-open the banner: + window.msosOpenConsent = function () { if (!document.querySelector('.msos-cc')) show(); }; + + var choice = null; + try { choice = localStorage.getItem(KEY); } catch (e) {} + if (choice !== 'granted' && choice !== 'denied') { + if (document.body) show(); + else document.addEventListener('DOMContentLoaded', show); + } +})(); diff --git a/en/about-us/index.html b/en/about-us/index.html index c29ada83..7c5f6863 100644 --- a/en/about-us/index.html +++ b/en/about-us/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/become-a-member/index.html b/en/become-a-member/index.html index fe3fe0db..f7f9f11e 100644 --- a/en/become-a-member/index.html +++ b/en/become-a-member/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/blog/how-to-open-slovenian-bank-account/index.html b/en/blog/how-to-open-slovenian-bank-account/index.html index a2cd66d4..ec8f5d0c 100644 --- a/en/blog/how-to-open-slovenian-bank-account/index.html +++ b/en/blog/how-to-open-slovenian-bank-account/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/blog/index.html b/en/blog/index.html index dbe686fb..eaa90e21 100644 --- a/en/blog/index.html +++ b/en/blog/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/cookie-policy/index.html b/en/cookie-policy/index.html index 6fa149e0..87e1f229 100644 --- a/en/cookie-policy/index.html +++ b/en/cookie-policy/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/faq/index.html b/en/faq/index.html index ff56e369..8efffde0 100644 --- a/en/faq/index.html +++ b/en/faq/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html b/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html index d5edc909..5b15a83d 100644 --- a/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html +++ b/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html b/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html index dc89f788..89e5f297 100644 --- a/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html +++ b/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-macedonia/index.html b/en/get-to-know-macedonia/index.html index 03609d90..985613b1 100644 --- a/en/get-to-know-macedonia/index.html +++ b/en/get-to-know-macedonia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html b/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html index 0d2069e9..ef2278b6 100644 --- a/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html +++ b/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html b/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html index 2e214821..f391b28e 100644 --- a/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html +++ b/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html b/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html index 0a6e9e9b..cc41a269 100644 --- a/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html +++ b/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-macedonia/welcome-to-macedonia/index.html b/en/get-to-know-macedonia/welcome-to-macedonia/index.html index d1f5133f..ceb96ecf 100644 --- a/en/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/en/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html b/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html index 2d53321d..63971500 100644 --- a/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html +++ b/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-slovenia/index.html b/en/get-to-know-slovenia/index.html index e6379b7f..baa3825e 100644 --- a/en/get-to-know-slovenia/index.html +++ b/en/get-to-know-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html b/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html index b0bdb73d..38f1bb5c 100644 --- a/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html +++ b/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html b/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html index 6c495c6f..e7431f81 100644 --- a/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html +++ b/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html b/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html index 424b88ca..bf89b4aa 100644 --- a/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html +++ b/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html b/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html index 4b23587d..dcd77f1a 100644 --- a/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html +++ b/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/get-to-know-slovenia/welcome-to-slovenia/index.html b/en/get-to-know-slovenia/welcome-to-slovenia/index.html index 3cec1140..80a7b14e 100644 --- a/en/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/en/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/index.html b/en/index.html index dedd37ca..5ccef424 100644 --- a/en/index.html +++ b/en/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/news/index.html b/en/news/index.html index 44f9f1bf..428c314a 100644 --- a/en/news/index.html +++ b/en/news/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/news/proof-of-means-updated-2026/index.html b/en/news/proof-of-means-updated-2026/index.html index d0e16af4..2d5cd232 100644 --- a/en/news/proof-of-means-updated-2026/index.html +++ b/en/news/proof-of-means-updated-2026/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/privacy-policy/index.html b/en/privacy-policy/index.html index 1362d4bb..2d9446af 100644 --- a/en/privacy-policy/index.html +++ b/en/privacy-policy/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/projects/humanitarian-tournament-in-maribor/index.html b/en/projects/humanitarian-tournament-in-maribor/index.html index 0b540027..0c48a015 100644 --- a/en/projects/humanitarian-tournament-in-maribor/index.html +++ b/en/projects/humanitarian-tournament-in-maribor/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/projects/in-memory-of-frosina-kulakova/index.html b/en/projects/in-memory-of-frosina-kulakova/index.html index d71598a0..2adde2c8 100644 --- a/en/projects/in-memory-of-frosina-kulakova/index.html +++ b/en/projects/in-memory-of-frosina-kulakova/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/projects/in-memory-of-the-kochani-victims/index.html b/en/projects/in-memory-of-the-kochani-victims/index.html index 2adcbb1f..34712ecb 100644 --- a/en/projects/in-memory-of-the-kochani-victims/index.html +++ b/en/projects/in-memory-of-the-kochani-victims/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/projects/index.html b/en/projects/index.html index 4f61a5ad..7559a7ce 100644 --- a/en/projects/index.html +++ b/en/projects/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/projects/macedonian-student-night-in-ljubljana/index.html b/en/projects/macedonian-student-night-in-ljubljana/index.html index 54afc064..f3c1e746 100644 --- a/en/projects/macedonian-student-night-in-ljubljana/index.html +++ b/en/projects/macedonian-student-night-in-ljubljana/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/projects/meet-student-slovenia-2023/index.html b/en/projects/meet-student-slovenia-2023/index.html index d73ea81a..9aa5dd57 100644 --- a/en/projects/meet-student-slovenia-2023/index.html +++ b/en/projects/meet-student-slovenia-2023/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/projects/meet-student-slovenia-2024/index.html b/en/projects/meet-student-slovenia-2024/index.html index 0b3f0dab..8a249ee0 100644 --- a/en/projects/meet-student-slovenia-2024/index.html +++ b/en/projects/meet-student-slovenia-2024/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/projects/morning-coffee-in-front-of-ctk/index.html b/en/projects/morning-coffee-in-front-of-ctk/index.html index 029a5e4f..b46c68f2 100644 --- a/en/projects/morning-coffee-in-front-of-ctk/index.html +++ b/en/projects/morning-coffee-in-front-of-ctk/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/projects/paint-and-wine-at-sunset/index.html b/en/projects/paint-and-wine-at-sunset/index.html index c3cf4787..208c8280 100644 --- a/en/projects/paint-and-wine-at-sunset/index.html +++ b/en/projects/paint-and-wine-at-sunset/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/projects/watching-handball-together-in-slovenia/index.html b/en/projects/watching-handball-together-in-slovenia/index.html index 6d68f47e..9daacaa3 100644 --- a/en/projects/watching-handball-together-in-slovenia/index.html +++ b/en/projects/watching-handball-together-in-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/academic-life/index.html b/en/student-welcome-guide/academic-life/index.html index a2566c0d..d43edb1e 100644 --- a/en/student-welcome-guide/academic-life/index.html +++ b/en/student-welcome-guide/academic-life/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/administrative-basics/index.html b/en/student-welcome-guide/administrative-basics/index.html index c441d71e..0c443797 100644 --- a/en/student-welcome-guide/administrative-basics/index.html +++ b/en/student-welcome-guide/administrative-basics/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/admission-and-enrolment/index.html b/en/student-welcome-guide/admission-and-enrolment/index.html index 94cf217c..7d1d853e 100644 --- a/en/student-welcome-guide/admission-and-enrolment/index.html +++ b/en/student-welcome-guide/admission-and-enrolment/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/application-deadlines/index.html b/en/student-welcome-guide/application-deadlines/index.html index 8c530398..01a24175 100644 --- a/en/student-welcome-guide/application-deadlines/index.html +++ b/en/student-welcome-guide/application-deadlines/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/arrival-checklist/index.html b/en/student-welcome-guide/arrival-checklist/index.html index 1d63b6c6..6815a45b 100644 --- a/en/student-welcome-guide/arrival-checklist/index.html +++ b/en/student-welcome-guide/arrival-checklist/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/bachelor-application/index.html b/en/student-welcome-guide/bachelor-application/index.html index 64023145..38f981b0 100644 --- a/en/student-welcome-guide/bachelor-application/index.html +++ b/en/student-welcome-guide/bachelor-application/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/choose-a-programme/index.html b/en/student-welcome-guide/choose-a-programme/index.html index c7a4056b..7e96967c 100644 --- a/en/student-welcome-guide/choose-a-programme/index.html +++ b/en/student-welcome-guide/choose-a-programme/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/complete-student-journey/index.html b/en/student-welcome-guide/complete-student-journey/index.html index 00f7f4c2..4e6c0b7d 100644 --- a/en/student-welcome-guide/complete-student-journey/index.html +++ b/en/student-welcome-guide/complete-student-journey/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/document-preparation/index.html b/en/student-welcome-guide/document-preparation/index.html index ea501006..fc0cac87 100644 --- a/en/student-welcome-guide/document-preparation/index.html +++ b/en/student-welcome-guide/document-preparation/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/evs-application-guide/index.html b/en/student-welcome-guide/evs-application-guide/index.html index c25e6de1..adff4454 100644 --- a/en/student-welcome-guide/evs-application-guide/index.html +++ b/en/student-welcome-guide/evs-application-guide/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/healthcare-in-slovenia/index.html b/en/student-welcome-guide/healthcare-in-slovenia/index.html index 9b162622..07f1dbcb 100644 --- a/en/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/en/student-welcome-guide/healthcare-in-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/index.html b/en/student-welcome-guide/index.html index c6eb9c97..e0dfa57e 100644 --- a/en/student-welcome-guide/index.html +++ b/en/student-welcome-guide/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/master-application/index.html b/en/student-welcome-guide/master-application/index.html index 0a92128f..288658e7 100644 --- a/en/student-welcome-guide/master-application/index.html +++ b/en/student-welcome-guide/master-application/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/means-accommodation-address/index.html b/en/student-welcome-guide/means-accommodation-address/index.html index 68cba734..4509fde6 100644 --- a/en/student-welcome-guide/means-accommodation-address/index.html +++ b/en/student-welcome-guide/means-accommodation-address/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/my-route/index.html b/en/student-welcome-guide/my-route/index.html index 06583ebf..89c73e04 100644 --- a/en/student-welcome-guide/my-route/index.html +++ b/en/student-welcome-guide/my-route/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/official-sources-and-checklists/index.html b/en/student-welcome-guide/official-sources-and-checklists/index.html index dd7869a0..cf8cae72 100644 --- a/en/student-welcome-guide/official-sources-and-checklists/index.html +++ b/en/student-welcome-guide/official-sources-and-checklists/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/prepare-to-move/index.html b/en/student-welcome-guide/prepare-to-move/index.html index 55bab709..aed10659 100644 --- a/en/student-welcome-guide/prepare-to-move/index.html +++ b/en/student-welcome-guide/prepare-to-move/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/recognition-of-education/index.html b/en/student-welcome-guide/recognition-of-education/index.html index a524416a..faf2d93b 100644 --- a/en/student-welcome-guide/recognition-of-education/index.html +++ b/en/student-welcome-guide/recognition-of-education/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/renew-change-graduate/index.html b/en/student-welcome-guide/renew-change-graduate/index.html index 06142eae..91f37dc6 100644 --- a/en/student-welcome-guide/renew-change-graduate/index.html +++ b/en/student-welcome-guide/renew-change-graduate/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/rm-si-3-health-insurance/index.html b/en/student-welcome-guide/rm-si-3-health-insurance/index.html index 0468dfd6..581d8929 100644 --- a/en/student-welcome-guide/rm-si-3-health-insurance/index.html +++ b/en/student-welcome-guide/rm-si-3-health-insurance/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/student-accommodation/index.html b/en/student-welcome-guide/student-accommodation/index.html index cecb16f0..e6a1fc1f 100644 --- a/en/student-welcome-guide/student-accommodation/index.html +++ b/en/student-welcome-guide/student-accommodation/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/student-budget/index.html b/en/student-welcome-guide/student-budget/index.html index 3a6a4fce..c5e3a15f 100644 --- a/en/student-welcome-guide/student-budget/index.html +++ b/en/student-welcome-guide/student-budget/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/student-meals/index.html b/en/student-welcome-guide/student-meals/index.html index 36385dba..3062b03d 100644 --- a/en/student-welcome-guide/student-meals/index.html +++ b/en/student-welcome-guide/student-meals/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html index 9cb58320..81454e34 100644 --- a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/student-residence-permit/index.html b/en/student-welcome-guide/student-residence-permit/index.html index 0296bd6c..e94ecf23 100644 --- a/en/student-welcome-guide/student-residence-permit/index.html +++ b/en/student-welcome-guide/student-residence-permit/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/student-transport/index.html b/en/student-welcome-guide/student-transport/index.html index c2f863fa..67cd50aa 100644 --- a/en/student-welcome-guide/student-transport/index.html +++ b/en/student-welcome-guide/student-transport/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/student-work/index.html b/en/student-welcome-guide/student-work/index.html index 84416d71..b38db4e5 100644 --- a/en/student-welcome-guide/student-work/index.html +++ b/en/student-welcome-guide/student-work/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/study-cities/index.html b/en/student-welcome-guide/study-cities/index.html index 3b7ea0f5..d48e1f05 100644 --- a/en/student-welcome-guide/study-cities/index.html +++ b/en/student-welcome-guide/study-cities/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/tuition-and-scholarships/index.html b/en/student-welcome-guide/tuition-and-scholarships/index.html index e233fdb6..c5d3c487 100644 --- a/en/student-welcome-guide/tuition-and-scholarships/index.html +++ b/en/student-welcome-guide/tuition-and-scholarships/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/visa-and-residence-explained/index.html b/en/student-welcome-guide/visa-and-residence-explained/index.html index c4511338..ef467028 100644 --- a/en/student-welcome-guide/visa-and-residence-explained/index.html +++ b/en/student-welcome-guide/visa-and-residence-explained/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/wellbeing-and-community/index.html b/en/student-welcome-guide/wellbeing-and-community/index.html index cd2b3f67..38e04adc 100644 --- a/en/student-welcome-guide/wellbeing-and-community/index.html +++ b/en/student-welcome-guide/wellbeing-and-community/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/student-welcome-guide/where-to-apply-for-residence/index.html b/en/student-welcome-guide/where-to-apply-for-residence/index.html index 98381702..ccfe1718 100644 --- a/en/student-welcome-guide/where-to-apply-for-residence/index.html +++ b/en/student-welcome-guide/where-to-apply-for-residence/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/en/timeline-and-milestones/index.html b/en/timeline-and-milestones/index.html index 9152022f..0f795551 100644 --- a/en/timeline-and-milestones/index.html +++ b/en/timeline-and-milestones/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/about-us/index.html b/mk/about-us/index.html index ff5ae87e..bb8d6f9c 100644 --- a/mk/about-us/index.html +++ b/mk/about-us/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/become-a-member/index.html b/mk/become-a-member/index.html index 9c9a1e30..8d43e416 100644 --- a/mk/become-a-member/index.html +++ b/mk/become-a-member/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/blog/how-to-open-slovenian-bank-account/index.html b/mk/blog/how-to-open-slovenian-bank-account/index.html index 9d8acf4a..61872de4 100644 --- a/mk/blog/how-to-open-slovenian-bank-account/index.html +++ b/mk/blog/how-to-open-slovenian-bank-account/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/blog/index.html b/mk/blog/index.html index 4953f40e..7af9b107 100644 --- a/mk/blog/index.html +++ b/mk/blog/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/cookie-policy/index.html b/mk/cookie-policy/index.html index fcbdb81d..59d5922d 100644 --- a/mk/cookie-policy/index.html +++ b/mk/cookie-policy/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/faq/index.html b/mk/faq/index.html index c01726e5..d321002f 100644 --- a/mk/faq/index.html +++ b/mk/faq/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html b/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html index 99b06339..b0726947 100644 --- a/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html +++ b/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html b/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html index 4e40d3d4..182f565d 100644 --- a/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html +++ b/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-macedonia/index.html b/mk/get-to-know-macedonia/index.html index 1d8bc87c..74b2591c 100644 --- a/mk/get-to-know-macedonia/index.html +++ b/mk/get-to-know-macedonia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html b/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html index 909e8098..406322f4 100644 --- a/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html +++ b/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html b/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html index 8d12dbb1..87fd4854 100644 --- a/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html +++ b/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html b/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html index 0c737cc1..2441407e 100644 --- a/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html +++ b/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-macedonia/welcome-to-macedonia/index.html b/mk/get-to-know-macedonia/welcome-to-macedonia/index.html index 22c5c7b2..5b21562c 100644 --- a/mk/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/mk/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html b/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html index d521362c..e618a955 100644 --- a/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html +++ b/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-slovenia/index.html b/mk/get-to-know-slovenia/index.html index 224994d2..47d1549d 100644 --- a/mk/get-to-know-slovenia/index.html +++ b/mk/get-to-know-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html b/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html index 5b0de917..dca4a248 100644 --- a/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html +++ b/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html b/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html index f6d78cc1..faaaa8a0 100644 --- a/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html +++ b/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html b/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html index 2da286c1..6612840f 100644 --- a/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html +++ b/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html b/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html index 824dfccf..47ce3a41 100644 --- a/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html +++ b/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/get-to-know-slovenia/welcome-to-slovenia/index.html b/mk/get-to-know-slovenia/welcome-to-slovenia/index.html index 35dd5cd5..fc95a1a3 100644 --- a/mk/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/mk/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/index.html b/mk/index.html index 1ba9c835..e3ad0f9b 100644 --- a/mk/index.html +++ b/mk/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/news/index.html b/mk/news/index.html index b0cc84d1..a44832dd 100644 --- a/mk/news/index.html +++ b/mk/news/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/news/proof-of-means-updated-2026/index.html b/mk/news/proof-of-means-updated-2026/index.html index 3175abf6..32297ece 100644 --- a/mk/news/proof-of-means-updated-2026/index.html +++ b/mk/news/proof-of-means-updated-2026/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/privacy-policy/index.html b/mk/privacy-policy/index.html index 27f1f286..c58b2ad3 100644 --- a/mk/privacy-policy/index.html +++ b/mk/privacy-policy/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/projects/humanitarian-tournament-in-maribor/index.html b/mk/projects/humanitarian-tournament-in-maribor/index.html index 81936b6d..30210fd3 100644 --- a/mk/projects/humanitarian-tournament-in-maribor/index.html +++ b/mk/projects/humanitarian-tournament-in-maribor/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/projects/in-memory-of-frosina-kulakova/index.html b/mk/projects/in-memory-of-frosina-kulakova/index.html index a30cbac4..91200e56 100644 --- a/mk/projects/in-memory-of-frosina-kulakova/index.html +++ b/mk/projects/in-memory-of-frosina-kulakova/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/projects/in-memory-of-the-kochani-victims/index.html b/mk/projects/in-memory-of-the-kochani-victims/index.html index b7774397..da591047 100644 --- a/mk/projects/in-memory-of-the-kochani-victims/index.html +++ b/mk/projects/in-memory-of-the-kochani-victims/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/projects/index.html b/mk/projects/index.html index d148a8b1..3a04836e 100644 --- a/mk/projects/index.html +++ b/mk/projects/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/projects/macedonian-student-night-in-ljubljana/index.html b/mk/projects/macedonian-student-night-in-ljubljana/index.html index 4a231d9c..bc87a887 100644 --- a/mk/projects/macedonian-student-night-in-ljubljana/index.html +++ b/mk/projects/macedonian-student-night-in-ljubljana/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/projects/meet-student-slovenia-2023/index.html b/mk/projects/meet-student-slovenia-2023/index.html index 4acdc561..57a53db4 100644 --- a/mk/projects/meet-student-slovenia-2023/index.html +++ b/mk/projects/meet-student-slovenia-2023/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/projects/meet-student-slovenia-2024/index.html b/mk/projects/meet-student-slovenia-2024/index.html index 87a823b7..403a1246 100644 --- a/mk/projects/meet-student-slovenia-2024/index.html +++ b/mk/projects/meet-student-slovenia-2024/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/projects/morning-coffee-in-front-of-ctk/index.html b/mk/projects/morning-coffee-in-front-of-ctk/index.html index 1b366219..441fc7ca 100644 --- a/mk/projects/morning-coffee-in-front-of-ctk/index.html +++ b/mk/projects/morning-coffee-in-front-of-ctk/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/projects/paint-and-wine-at-sunset/index.html b/mk/projects/paint-and-wine-at-sunset/index.html index 80dfc968..63a26931 100644 --- a/mk/projects/paint-and-wine-at-sunset/index.html +++ b/mk/projects/paint-and-wine-at-sunset/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/projects/watching-handball-together-in-slovenia/index.html b/mk/projects/watching-handball-together-in-slovenia/index.html index a8016479..a7d9d242 100644 --- a/mk/projects/watching-handball-together-in-slovenia/index.html +++ b/mk/projects/watching-handball-together-in-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/academic-life/index.html b/mk/student-welcome-guide/academic-life/index.html index 746403f3..857c379c 100644 --- a/mk/student-welcome-guide/academic-life/index.html +++ b/mk/student-welcome-guide/academic-life/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/administrative-basics/index.html b/mk/student-welcome-guide/administrative-basics/index.html index 209b1f70..22547be3 100644 --- a/mk/student-welcome-guide/administrative-basics/index.html +++ b/mk/student-welcome-guide/administrative-basics/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/admission-and-enrolment/index.html b/mk/student-welcome-guide/admission-and-enrolment/index.html index 49032df5..94b6e39b 100644 --- a/mk/student-welcome-guide/admission-and-enrolment/index.html +++ b/mk/student-welcome-guide/admission-and-enrolment/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/application-deadlines/index.html b/mk/student-welcome-guide/application-deadlines/index.html index 0d5da0ea..60dc9bb2 100644 --- a/mk/student-welcome-guide/application-deadlines/index.html +++ b/mk/student-welcome-guide/application-deadlines/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/arrival-checklist/index.html b/mk/student-welcome-guide/arrival-checklist/index.html index e0819b04..0a8cb0c1 100644 --- a/mk/student-welcome-guide/arrival-checklist/index.html +++ b/mk/student-welcome-guide/arrival-checklist/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/bachelor-application/index.html b/mk/student-welcome-guide/bachelor-application/index.html index 67530f00..700fdbf5 100644 --- a/mk/student-welcome-guide/bachelor-application/index.html +++ b/mk/student-welcome-guide/bachelor-application/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/choose-a-programme/index.html b/mk/student-welcome-guide/choose-a-programme/index.html index d45afb86..cace773f 100644 --- a/mk/student-welcome-guide/choose-a-programme/index.html +++ b/mk/student-welcome-guide/choose-a-programme/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/complete-student-journey/index.html b/mk/student-welcome-guide/complete-student-journey/index.html index 9158838f..c84475d4 100644 --- a/mk/student-welcome-guide/complete-student-journey/index.html +++ b/mk/student-welcome-guide/complete-student-journey/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/document-preparation/index.html b/mk/student-welcome-guide/document-preparation/index.html index ef5750ce..1548cdf8 100644 --- a/mk/student-welcome-guide/document-preparation/index.html +++ b/mk/student-welcome-guide/document-preparation/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/evs-application-guide/index.html b/mk/student-welcome-guide/evs-application-guide/index.html index 83dc19ba..3cf7ce60 100644 --- a/mk/student-welcome-guide/evs-application-guide/index.html +++ b/mk/student-welcome-guide/evs-application-guide/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/healthcare-in-slovenia/index.html b/mk/student-welcome-guide/healthcare-in-slovenia/index.html index ceeaae13..a76edbea 100644 --- a/mk/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/mk/student-welcome-guide/healthcare-in-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/index.html b/mk/student-welcome-guide/index.html index 812d98c1..2698295c 100644 --- a/mk/student-welcome-guide/index.html +++ b/mk/student-welcome-guide/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/master-application/index.html b/mk/student-welcome-guide/master-application/index.html index 1d73a7a4..0745555c 100644 --- a/mk/student-welcome-guide/master-application/index.html +++ b/mk/student-welcome-guide/master-application/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/means-accommodation-address/index.html b/mk/student-welcome-guide/means-accommodation-address/index.html index 612b3913..7f0af655 100644 --- a/mk/student-welcome-guide/means-accommodation-address/index.html +++ b/mk/student-welcome-guide/means-accommodation-address/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/my-route/index.html b/mk/student-welcome-guide/my-route/index.html index 63d8da0d..a147994c 100644 --- a/mk/student-welcome-guide/my-route/index.html +++ b/mk/student-welcome-guide/my-route/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/official-sources-and-checklists/index.html b/mk/student-welcome-guide/official-sources-and-checklists/index.html index 51ab1261..d723da4a 100644 --- a/mk/student-welcome-guide/official-sources-and-checklists/index.html +++ b/mk/student-welcome-guide/official-sources-and-checklists/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/prepare-to-move/index.html b/mk/student-welcome-guide/prepare-to-move/index.html index 587caf20..1026179e 100644 --- a/mk/student-welcome-guide/prepare-to-move/index.html +++ b/mk/student-welcome-guide/prepare-to-move/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/recognition-of-education/index.html b/mk/student-welcome-guide/recognition-of-education/index.html index 0c40df0c..a7bb82f9 100644 --- a/mk/student-welcome-guide/recognition-of-education/index.html +++ b/mk/student-welcome-guide/recognition-of-education/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/renew-change-graduate/index.html b/mk/student-welcome-guide/renew-change-graduate/index.html index 31266837..d2208f9d 100644 --- a/mk/student-welcome-guide/renew-change-graduate/index.html +++ b/mk/student-welcome-guide/renew-change-graduate/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/rm-si-3-health-insurance/index.html b/mk/student-welcome-guide/rm-si-3-health-insurance/index.html index 33e7352a..147ac640 100644 --- a/mk/student-welcome-guide/rm-si-3-health-insurance/index.html +++ b/mk/student-welcome-guide/rm-si-3-health-insurance/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/student-accommodation/index.html b/mk/student-welcome-guide/student-accommodation/index.html index f12dc426..c57c3c57 100644 --- a/mk/student-welcome-guide/student-accommodation/index.html +++ b/mk/student-welcome-guide/student-accommodation/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/student-budget/index.html b/mk/student-welcome-guide/student-budget/index.html index 4001664f..b8fc2e5c 100644 --- a/mk/student-welcome-guide/student-budget/index.html +++ b/mk/student-welcome-guide/student-budget/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/student-meals/index.html b/mk/student-welcome-guide/student-meals/index.html index ff668b0c..4819b163 100644 --- a/mk/student-welcome-guide/student-meals/index.html +++ b/mk/student-welcome-guide/student-meals/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html index b6e0aeb7..ae912a77 100644 --- a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/student-residence-permit/index.html b/mk/student-welcome-guide/student-residence-permit/index.html index 6aa7a49d..9cb611f6 100644 --- a/mk/student-welcome-guide/student-residence-permit/index.html +++ b/mk/student-welcome-guide/student-residence-permit/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/student-transport/index.html b/mk/student-welcome-guide/student-transport/index.html index 73cd6a49..3033e5eb 100644 --- a/mk/student-welcome-guide/student-transport/index.html +++ b/mk/student-welcome-guide/student-transport/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/student-work/index.html b/mk/student-welcome-guide/student-work/index.html index 542ce257..c5f6d188 100644 --- a/mk/student-welcome-guide/student-work/index.html +++ b/mk/student-welcome-guide/student-work/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/study-cities/index.html b/mk/student-welcome-guide/study-cities/index.html index e73f4207..a7f95478 100644 --- a/mk/student-welcome-guide/study-cities/index.html +++ b/mk/student-welcome-guide/study-cities/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/tuition-and-scholarships/index.html b/mk/student-welcome-guide/tuition-and-scholarships/index.html index 998746a2..e1906278 100644 --- a/mk/student-welcome-guide/tuition-and-scholarships/index.html +++ b/mk/student-welcome-guide/tuition-and-scholarships/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/visa-and-residence-explained/index.html b/mk/student-welcome-guide/visa-and-residence-explained/index.html index 26bd454a..a51d5ce4 100644 --- a/mk/student-welcome-guide/visa-and-residence-explained/index.html +++ b/mk/student-welcome-guide/visa-and-residence-explained/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/wellbeing-and-community/index.html b/mk/student-welcome-guide/wellbeing-and-community/index.html index 305c9691..34ce0b3e 100644 --- a/mk/student-welcome-guide/wellbeing-and-community/index.html +++ b/mk/student-welcome-guide/wellbeing-and-community/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/student-welcome-guide/where-to-apply-for-residence/index.html b/mk/student-welcome-guide/where-to-apply-for-residence/index.html index 6ea5bbce..ca315c64 100644 --- a/mk/student-welcome-guide/where-to-apply-for-residence/index.html +++ b/mk/student-welcome-guide/where-to-apply-for-residence/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/mk/timeline-and-milestones/index.html b/mk/timeline-and-milestones/index.html index ff88f454..7cfef79e 100644 --- a/mk/timeline-and-milestones/index.html +++ b/mk/timeline-and-milestones/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/about-us/index.html b/si/about-us/index.html index d5a32f7b..955cbafa 100644 --- a/si/about-us/index.html +++ b/si/about-us/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/become-a-member/index.html b/si/become-a-member/index.html index 8f12e88c..0540d99d 100644 --- a/si/become-a-member/index.html +++ b/si/become-a-member/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/blog/how-to-open-slovenian-bank-account/index.html b/si/blog/how-to-open-slovenian-bank-account/index.html index a8508dc4..c825e82e 100644 --- a/si/blog/how-to-open-slovenian-bank-account/index.html +++ b/si/blog/how-to-open-slovenian-bank-account/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/blog/index.html b/si/blog/index.html index 49261173..a8ef313d 100644 --- a/si/blog/index.html +++ b/si/blog/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/cookie-policy/index.html b/si/cookie-policy/index.html index bc9b0ab7..b1c59c36 100644 --- a/si/cookie-policy/index.html +++ b/si/cookie-policy/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/faq/index.html b/si/faq/index.html index 8f8b5aee..90bde2dd 100644 --- a/si/faq/index.html +++ b/si/faq/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html b/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html index 0c09278b..5346166f 100644 --- a/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html +++ b/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html b/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html index 9a23cf93..3b2ae4aa 100644 --- a/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html +++ b/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-macedonia/index.html b/si/get-to-know-macedonia/index.html index 134b7d64..5b6dade6 100644 --- a/si/get-to-know-macedonia/index.html +++ b/si/get-to-know-macedonia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html b/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html index 8c9121ad..75edf156 100644 --- a/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html +++ b/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html b/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html index 6fad5c55..4ac38972 100644 --- a/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html +++ b/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html b/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html index c31fba92..e8b521b4 100644 --- a/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html +++ b/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-macedonia/welcome-to-macedonia/index.html b/si/get-to-know-macedonia/welcome-to-macedonia/index.html index d57b1507..87929ad2 100644 --- a/si/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/si/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html b/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html index f8d6a2c6..ef743163 100644 --- a/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html +++ b/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-slovenia/index.html b/si/get-to-know-slovenia/index.html index d79b6c75..6ab29301 100644 --- a/si/get-to-know-slovenia/index.html +++ b/si/get-to-know-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html b/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html index b6b12508..00482648 100644 --- a/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html +++ b/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html b/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html index 5f051f18..7bfb9f03 100644 --- a/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html +++ b/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html b/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html index 83d6596e..d8282492 100644 --- a/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html +++ b/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html b/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html index 6dd6af27..072f54f9 100644 --- a/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html +++ b/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/get-to-know-slovenia/welcome-to-slovenia/index.html b/si/get-to-know-slovenia/welcome-to-slovenia/index.html index 93c267ba..5479cd65 100644 --- a/si/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/si/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/index.html b/si/index.html index e21a96e3..bf10bfd8 100644 --- a/si/index.html +++ b/si/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/news/index.html b/si/news/index.html index 01f632e3..a7773300 100644 --- a/si/news/index.html +++ b/si/news/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/news/proof-of-means-updated-2026/index.html b/si/news/proof-of-means-updated-2026/index.html index 361b60ba..390268d5 100644 --- a/si/news/proof-of-means-updated-2026/index.html +++ b/si/news/proof-of-means-updated-2026/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/privacy-policy/index.html b/si/privacy-policy/index.html index 2cccd359..7e5d7380 100644 --- a/si/privacy-policy/index.html +++ b/si/privacy-policy/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/projects/humanitarian-tournament-in-maribor/index.html b/si/projects/humanitarian-tournament-in-maribor/index.html index 700b6549..be84a362 100644 --- a/si/projects/humanitarian-tournament-in-maribor/index.html +++ b/si/projects/humanitarian-tournament-in-maribor/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/projects/in-memory-of-frosina-kulakova/index.html b/si/projects/in-memory-of-frosina-kulakova/index.html index a6edb3b8..69825946 100644 --- a/si/projects/in-memory-of-frosina-kulakova/index.html +++ b/si/projects/in-memory-of-frosina-kulakova/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/projects/in-memory-of-the-kochani-victims/index.html b/si/projects/in-memory-of-the-kochani-victims/index.html index 13d7c191..750c4e86 100644 --- a/si/projects/in-memory-of-the-kochani-victims/index.html +++ b/si/projects/in-memory-of-the-kochani-victims/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/projects/index.html b/si/projects/index.html index be682b7f..5ca19120 100644 --- a/si/projects/index.html +++ b/si/projects/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/projects/macedonian-student-night-in-ljubljana/index.html b/si/projects/macedonian-student-night-in-ljubljana/index.html index af0db86f..2170ed59 100644 --- a/si/projects/macedonian-student-night-in-ljubljana/index.html +++ b/si/projects/macedonian-student-night-in-ljubljana/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/projects/meet-student-slovenia-2023/index.html b/si/projects/meet-student-slovenia-2023/index.html index 7933126a..164d4c74 100644 --- a/si/projects/meet-student-slovenia-2023/index.html +++ b/si/projects/meet-student-slovenia-2023/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/projects/meet-student-slovenia-2024/index.html b/si/projects/meet-student-slovenia-2024/index.html index 95e39e18..0e74736f 100644 --- a/si/projects/meet-student-slovenia-2024/index.html +++ b/si/projects/meet-student-slovenia-2024/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/projects/morning-coffee-in-front-of-ctk/index.html b/si/projects/morning-coffee-in-front-of-ctk/index.html index d77b05b4..f46963c1 100644 --- a/si/projects/morning-coffee-in-front-of-ctk/index.html +++ b/si/projects/morning-coffee-in-front-of-ctk/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/projects/paint-and-wine-at-sunset/index.html b/si/projects/paint-and-wine-at-sunset/index.html index 10ef2821..84762e3e 100644 --- a/si/projects/paint-and-wine-at-sunset/index.html +++ b/si/projects/paint-and-wine-at-sunset/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/projects/watching-handball-together-in-slovenia/index.html b/si/projects/watching-handball-together-in-slovenia/index.html index 8844e1fd..b1f62f56 100644 --- a/si/projects/watching-handball-together-in-slovenia/index.html +++ b/si/projects/watching-handball-together-in-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/academic-life/index.html b/si/student-welcome-guide/academic-life/index.html index f08fd8c3..0526325f 100644 --- a/si/student-welcome-guide/academic-life/index.html +++ b/si/student-welcome-guide/academic-life/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/administrative-basics/index.html b/si/student-welcome-guide/administrative-basics/index.html index a7d0a467..aedbac0f 100644 --- a/si/student-welcome-guide/administrative-basics/index.html +++ b/si/student-welcome-guide/administrative-basics/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/admission-and-enrolment/index.html b/si/student-welcome-guide/admission-and-enrolment/index.html index 013ce2b6..fff6b890 100644 --- a/si/student-welcome-guide/admission-and-enrolment/index.html +++ b/si/student-welcome-guide/admission-and-enrolment/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/application-deadlines/index.html b/si/student-welcome-guide/application-deadlines/index.html index c447c119..25e34c82 100644 --- a/si/student-welcome-guide/application-deadlines/index.html +++ b/si/student-welcome-guide/application-deadlines/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/arrival-checklist/index.html b/si/student-welcome-guide/arrival-checklist/index.html index afd3af9a..7e4b5e01 100644 --- a/si/student-welcome-guide/arrival-checklist/index.html +++ b/si/student-welcome-guide/arrival-checklist/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/bachelor-application/index.html b/si/student-welcome-guide/bachelor-application/index.html index 6f0a0827..405f4c36 100644 --- a/si/student-welcome-guide/bachelor-application/index.html +++ b/si/student-welcome-guide/bachelor-application/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/choose-a-programme/index.html b/si/student-welcome-guide/choose-a-programme/index.html index c6917872..920c8804 100644 --- a/si/student-welcome-guide/choose-a-programme/index.html +++ b/si/student-welcome-guide/choose-a-programme/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/complete-student-journey/index.html b/si/student-welcome-guide/complete-student-journey/index.html index c26207b0..abb2c1aa 100644 --- a/si/student-welcome-guide/complete-student-journey/index.html +++ b/si/student-welcome-guide/complete-student-journey/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/document-preparation/index.html b/si/student-welcome-guide/document-preparation/index.html index 94602635..445f00d8 100644 --- a/si/student-welcome-guide/document-preparation/index.html +++ b/si/student-welcome-guide/document-preparation/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/evs-application-guide/index.html b/si/student-welcome-guide/evs-application-guide/index.html index 9d2c905c..3463c5ce 100644 --- a/si/student-welcome-guide/evs-application-guide/index.html +++ b/si/student-welcome-guide/evs-application-guide/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/healthcare-in-slovenia/index.html b/si/student-welcome-guide/healthcare-in-slovenia/index.html index c63d625b..750498e2 100644 --- a/si/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/si/student-welcome-guide/healthcare-in-slovenia/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/index.html b/si/student-welcome-guide/index.html index 6e8be03d..442a3283 100644 --- a/si/student-welcome-guide/index.html +++ b/si/student-welcome-guide/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/master-application/index.html b/si/student-welcome-guide/master-application/index.html index 480360f8..55825eb1 100644 --- a/si/student-welcome-guide/master-application/index.html +++ b/si/student-welcome-guide/master-application/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/means-accommodation-address/index.html b/si/student-welcome-guide/means-accommodation-address/index.html index 9b63f87c..836f585a 100644 --- a/si/student-welcome-guide/means-accommodation-address/index.html +++ b/si/student-welcome-guide/means-accommodation-address/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/my-route/index.html b/si/student-welcome-guide/my-route/index.html index d1c4c0fe..39a616f2 100644 --- a/si/student-welcome-guide/my-route/index.html +++ b/si/student-welcome-guide/my-route/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/official-sources-and-checklists/index.html b/si/student-welcome-guide/official-sources-and-checklists/index.html index 47edec8b..3062ddff 100644 --- a/si/student-welcome-guide/official-sources-and-checklists/index.html +++ b/si/student-welcome-guide/official-sources-and-checklists/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/prepare-to-move/index.html b/si/student-welcome-guide/prepare-to-move/index.html index 188f0f9b..22ce1664 100644 --- a/si/student-welcome-guide/prepare-to-move/index.html +++ b/si/student-welcome-guide/prepare-to-move/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/recognition-of-education/index.html b/si/student-welcome-guide/recognition-of-education/index.html index b49db17a..e83a87c4 100644 --- a/si/student-welcome-guide/recognition-of-education/index.html +++ b/si/student-welcome-guide/recognition-of-education/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/renew-change-graduate/index.html b/si/student-welcome-guide/renew-change-graduate/index.html index 7c63d804..c4417047 100644 --- a/si/student-welcome-guide/renew-change-graduate/index.html +++ b/si/student-welcome-guide/renew-change-graduate/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/rm-si-3-health-insurance/index.html b/si/student-welcome-guide/rm-si-3-health-insurance/index.html index df235c36..c582fd2a 100644 --- a/si/student-welcome-guide/rm-si-3-health-insurance/index.html +++ b/si/student-welcome-guide/rm-si-3-health-insurance/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/student-accommodation/index.html b/si/student-welcome-guide/student-accommodation/index.html index ffcc0d0f..fb8b57ac 100644 --- a/si/student-welcome-guide/student-accommodation/index.html +++ b/si/student-welcome-guide/student-accommodation/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/student-budget/index.html b/si/student-welcome-guide/student-budget/index.html index 35941bfb..a5d42694 100644 --- a/si/student-welcome-guide/student-budget/index.html +++ b/si/student-welcome-guide/student-budget/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/student-meals/index.html b/si/student-welcome-guide/student-meals/index.html index eea9ed5a..b7a4663d 100644 --- a/si/student-welcome-guide/student-meals/index.html +++ b/si/student-welcome-guide/student-meals/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html index 0fee291d..5713e7c2 100644 --- a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/student-residence-permit/index.html b/si/student-welcome-guide/student-residence-permit/index.html index dfc834ef..c9a2c7d4 100644 --- a/si/student-welcome-guide/student-residence-permit/index.html +++ b/si/student-welcome-guide/student-residence-permit/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/student-transport/index.html b/si/student-welcome-guide/student-transport/index.html index c8517e22..c123dd3d 100644 --- a/si/student-welcome-guide/student-transport/index.html +++ b/si/student-welcome-guide/student-transport/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/student-work/index.html b/si/student-welcome-guide/student-work/index.html index edc52a4f..9d799a92 100644 --- a/si/student-welcome-guide/student-work/index.html +++ b/si/student-welcome-guide/student-work/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/study-cities/index.html b/si/student-welcome-guide/study-cities/index.html index 9ab65537..7cb194ef 100644 --- a/si/student-welcome-guide/study-cities/index.html +++ b/si/student-welcome-guide/study-cities/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/tuition-and-scholarships/index.html b/si/student-welcome-guide/tuition-and-scholarships/index.html index 51365769..b4dd015d 100644 --- a/si/student-welcome-guide/tuition-and-scholarships/index.html +++ b/si/student-welcome-guide/tuition-and-scholarships/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/visa-and-residence-explained/index.html b/si/student-welcome-guide/visa-and-residence-explained/index.html index 20ee0703..b8079d86 100644 --- a/si/student-welcome-guide/visa-and-residence-explained/index.html +++ b/si/student-welcome-guide/visa-and-residence-explained/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/wellbeing-and-community/index.html b/si/student-welcome-guide/wellbeing-and-community/index.html index b4a740fd..4d22a2d6 100644 --- a/si/student-welcome-guide/wellbeing-and-community/index.html +++ b/si/student-welcome-guide/wellbeing-and-community/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/student-welcome-guide/where-to-apply-for-residence/index.html b/si/student-welcome-guide/where-to-apply-for-residence/index.html index 608fe822..ef331872 100644 --- a/si/student-welcome-guide/where-to-apply-for-residence/index.html +++ b/si/student-welcome-guide/where-to-apply-for-residence/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/si/timeline-and-milestones/index.html b/si/timeline-and-milestones/index.html index 454d1176..900063f7 100644 --- a/si/timeline-and-milestones/index.html +++ b/si/timeline-and-milestones/index.html @@ -14,9 +14,14 @@ ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied', analytics_storage: 'denied', wait_for_update: 500 }); + // Restore a returning visitor's prior choice before the first hit. + try { if (localStorage.getItem('msos-consent') === 'granted') { + gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted', + ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){} gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); + diff --git a/tools/seo_inject.py b/tools/seo_inject.py index d600364c..810fab6b 100644 --- a/tools/seo_inject.py +++ b/tools/seo_inject.py @@ -85,9 +85,14 @@ GA_LINES = [ " ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',", " analytics_storage: 'denied', wait_for_update: 500", " });", + " // Restore a returning visitor's prior choice before the first hit.", + " try { if (localStorage.getItem('msos-consent') === 'granted') {", + " gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',", + " ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}", " gtag('js', new Date());", f" gtag('config', '{GA_ID}');", ' ', + ' ', ] # ---- page trees (for hreflang parity) ----