From 7c2110d8a5e847118823b85c4f8ba906a8a7fcb1 Mon Sep 17 00:00:00 2001 From: popovskik Date: Thu, 27 Aug 2026 18:03:13 +0200 Subject: [PATCH 1/2] fix(mobile): Ask-MSOS pill yields to cookie/language banners In in-app browsers (Instagram/Facebook) the floating pill (z-index 9999, same as the cookie banner) sat on top of the cookie Accept button and the language banner, so consent could not be tapped. The pill now hides whenever the cookie-consent (.msos-cc) or language (.lang-suggest) banner is present, via a MutationObserver on , and reappears once they are dismissed. With the pill yielding, the language banner is dropped back to the bottom edge. Co-Authored-By: Claude Opus 4.8 (1M context) --- assistant.css | 2 ++ assistant.js | 13 +++++++++++++ css/components/_lang-banner.css | 6 +++--- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/assistant.css b/assistant.css index e78fd253..dd604b7e 100644 --- a/assistant.css +++ b/assistant.css @@ -18,6 +18,8 @@ bottom-right, so move the assistant to the bottom-left there. */ .msa-root.msa-left { right: auto; left: 20px; } .msa-root.msa-left .msa-panel { right: auto; left: 0; } +/* Hidden while a bottom overlay (cookie consent / language banner) is up. */ +.msa-root.msa-hidden { display: none !important; } /* launcher */ .msa-launch { diff --git a/assistant.js b/assistant.js index a4372a7d..57ad655c 100644 --- a/assistant.js +++ b/assistant.js @@ -321,6 +321,19 @@ root.querySelector(".msa-x").addEventListener("click", close); root.querySelector(".msa-form").addEventListener("submit", function (e) { e.preventDefault(); submit(); }); document.addEventListener("keydown", function (e) { if (e.key === "Escape" && opened) close(); }); + + // Yield to bottom-anchored overlays (cookie-consent banner, language + // banner) so the launcher never sits on top of their action buttons — + // important in in-app browsers (Instagram/Facebook) where everything + // stacks at the bottom. The pill reappears once they are dismissed. + (function () { + function overlayUp() { + return !!document.querySelector(".msos-cc") || !!document.querySelector(".lang-suggest"); + } + function sync() { root.classList.toggle("msa-hidden", overlayUp()); } + try { new MutationObserver(sync).observe(document.body, { childList: true }); } catch (e) {} + sync(); + })(); } if (document.readyState !== "loading") build(); diff --git a/css/components/_lang-banner.css b/css/components/_lang-banner.css index 8fb9bd6f..e3c5c7fc 100644 --- a/css/components/_lang-banner.css +++ b/css/components/_lang-banner.css @@ -56,9 +56,9 @@ .lang-suggest { left: 16px; right: 16px; - /* sit above the floating "Ask MSOS" pill (bottom-right, z-index above - this banner) so it never covers the dismiss (×) button */ - bottom: 84px; + /* The Ask-MSOS pill now hides while this banner is up (see assistant.js), + so the banner can sit at the bottom without colliding with it. */ + bottom: 16px; transform: translateY(24px); flex-wrap: wrap; } -- 2.43.0 From 954f186761708097bdf17c3e3f76ddb67ab612ef Mon Sep 17 00:00:00 2001 From: popovskik Date: Thu, 27 Aug 2026 18:14:44 +0200 Subject: [PATCH 2/2] build: content-hash cache-busting for local CSS/JS (?v=hash) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stops deploys being served stale from browser cache — the recurring "changes do not show up until a hard refresh" problem. - New tools/cache_bust.py stamps a global content hash onto every local / + + diff --git a/css/main.css b/css/main.css index 9481d329..26788182 100644 --- a/css/main.css +++ b/css/main.css @@ -15,36 +15,36 @@ */ /* 1. Base Styles */ -@import 'base/_base.css'; -@import 'base/_typography.css'; +@import 'base/_base.css?v=64a53dd6'; +@import 'base/_typography.css?v=64a53dd6'; /* 2. Layout Components */ -@import 'layout/_header.css'; -@import 'layout/_footer.css'; +@import 'layout/_header.css?v=64a53dd6'; +@import 'layout/_footer.css?v=64a53dd6'; /* 3. Reusable Components */ -@import 'components/_buttons.css'; -@import 'components/_cards.css'; -@import 'components/_lang-banner.css'; -@import 'components/_lightbox.css'; +@import 'components/_buttons.css?v=64a53dd6'; +@import 'components/_cards.css?v=64a53dd6'; +@import 'components/_lang-banner.css?v=64a53dd6'; +@import 'components/_lightbox.css?v=64a53dd6'; /* 4. Page-specific Styles */ -@import 'pages/_home.css'; -@import 'pages/_projects.css'; -@import 'pages/_article.css'; -@import 'pages/_about.css'; -@import 'pages/_timeline.css'; -@import 'pages/_guide.css'; -@import 'pages/_faq.css'; -@import 'pages/_blog.css'; -@import 'pages/_news.css'; -@import 'pages/_member.css'; -@import 'pages/_support.css'; -@import 'pages/_hub.css'; -@import 'pages/_legal.css'; -@import 'pages/_gallery.css'; -@import 'pages/_press.css'; -@import 'pages/_event.css'; +@import 'pages/_home.css?v=64a53dd6'; +@import 'pages/_projects.css?v=64a53dd6'; +@import 'pages/_article.css?v=64a53dd6'; +@import 'pages/_about.css?v=64a53dd6'; +@import 'pages/_timeline.css?v=64a53dd6'; +@import 'pages/_guide.css?v=64a53dd6'; +@import 'pages/_faq.css?v=64a53dd6'; +@import 'pages/_blog.css?v=64a53dd6'; +@import 'pages/_news.css?v=64a53dd6'; +@import 'pages/_member.css?v=64a53dd6'; +@import 'pages/_support.css?v=64a53dd6'; +@import 'pages/_hub.css?v=64a53dd6'; +@import 'pages/_legal.css?v=64a53dd6'; +@import 'pages/_gallery.css?v=64a53dd6'; +@import 'pages/_press.css?v=64a53dd6'; +@import 'pages/_event.css?v=64a53dd6'; /* Loaded last so the shared filter bar wins over per-page chip styles. */ -@import 'pages/_filterbar.css'; \ No newline at end of file +@import 'pages/_filterbar.css?v=64a53dd6'; \ No newline at end of file diff --git a/en/about-us/index.html b/en/about-us/index.html index b814732b..eb21d561 100644 --- a/en/about-us/index.html +++ b/en/about-us/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -572,8 +572,8 @@ - - - + + + diff --git a/en/become-a-member/index.html b/en/become-a-member/index.html index ee2834fe..f441c2f1 100644 --- a/en/become-a-member/index.html +++ b/en/become-a-member/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -624,10 +624,10 @@ - - + + - - + + diff --git a/en/blog/ad-futura-scholarship-slovenia-2026/index.html b/en/blog/ad-futura-scholarship-slovenia-2026/index.html index 3297c157..a3556ffb 100644 --- a/en/blog/ad-futura-scholarship-slovenia-2026/index.html +++ b/en/blog/ad-futura-scholarship-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -444,9 +444,9 @@ - + - - + + diff --git a/en/blog/how-i-coped-with-leaving-home/index.html b/en/blog/how-i-coped-with-leaving-home/index.html index 47154958..65d7c9e8 100644 --- a/en/blog/how-i-coped-with-leaving-home/index.html +++ b/en/blog/how-i-coped-with-leaving-home/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -348,9 +348,9 @@ - + - - + + 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 29676ac0..b9af3c2c 100644 --- a/en/blog/how-to-open-slovenian-bank-account/index.html +++ b/en/blog/how-to-open-slovenian-bank-account/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -422,9 +422,9 @@ - + - - + + diff --git a/en/blog/index.html b/en/blog/index.html index d3d57ee2..3a1f6b78 100644 --- a/en/blog/index.html +++ b/en/blog/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -434,11 +434,11 @@ - + - - - - + + + + diff --git a/en/blog/learning-slovene-where-to-start/index.html b/en/blog/learning-slovene-where-to-start/index.html index f4dfa921..4fa6c160 100644 --- a/en/blog/learning-slovene-where-to-start/index.html +++ b/en/blog/learning-slovene-where-to-start/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -381,9 +381,9 @@ - + - - + + diff --git a/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html b/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html index a437c687..b6634c2a 100644 --- a/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html +++ b/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -393,9 +393,9 @@ - + - - + + diff --git a/en/blog/welcome-days-slovenian-universities-2026-2027/index.html b/en/blog/welcome-days-slovenian-universities-2026-2027/index.html index adc8ddcc..a3a67f95 100644 --- a/en/blog/welcome-days-slovenian-universities-2026-2027/index.html +++ b/en/blog/welcome-days-slovenian-universities-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,9 +384,9 @@ - + - - + + diff --git a/en/blog/where-to-search-for-accommodation-in-slovenia/index.html b/en/blog/where-to-search-for-accommodation-in-slovenia/index.html index 0a0a71c1..ee0ecfda 100644 --- a/en/blog/where-to-search-for-accommodation-in-slovenia/index.html +++ b/en/blog/where-to-search-for-accommodation-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -437,9 +437,9 @@ - + - - + + diff --git a/en/cookie-policy/index.html b/en/cookie-policy/index.html index 1e4d6b80..b4acdf9c 100644 --- a/en/cookie-policy/index.html +++ b/en/cookie-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -322,8 +322,8 @@ - - - + + + diff --git a/en/faq/index.html b/en/faq/index.html index bf1c8d74..6ecf87c9 100644 --- a/en/faq/index.html +++ b/en/faq/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -58,7 +58,7 @@ - + @@ -539,7 +539,7 @@ - - + + diff --git a/en/gallery/index.html b/en/gallery/index.html index 7dc1c0a2..1bfce38d 100644 --- a/en/gallery/index.html +++ b/en/gallery/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -648,8 +648,8 @@ - - - + + + 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 eac48ff1..465d90c6 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + 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 d78ac5b4..9c3f4829 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/en/get-to-know-macedonia/index.html b/en/get-to-know-macedonia/index.html index 40ade45b..8b927d06 100644 --- a/en/get-to-know-macedonia/index.html +++ b/en/get-to-know-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -372,8 +372,8 @@ - - - + + + 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 4f9ea09d..d817bbd3 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + 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 e700641e..20ca9ac6 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -397,8 +397,8 @@ - - - + + + 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 da2ca2b0..dc1bc8b8 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -387,8 +387,8 @@ - - - + + + 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 14ffff8b..75c686dc 100644 --- a/en/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/en/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,8 +384,8 @@ - - - + + + 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 3e73f7c3..a41ae6ce 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -389,8 +389,8 @@ - - - + + + diff --git a/en/get-to-know-slovenia/index.html b/en/get-to-know-slovenia/index.html index 74451d36..bdb4c568 100644 --- a/en/get-to-know-slovenia/index.html +++ b/en/get-to-know-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -372,8 +372,8 @@ - - - + + + 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 dd1634b9..e3f7dbef 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,8 +385,8 @@ - - - + + + 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 13bf0ba0..26622ea6 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + 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 6ad05d43..a1532eea 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,8 +406,8 @@ - - - + + + 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 42b720a6..7845889d 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,8 +391,8 @@ - - - + + + 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 fab23d6d..9e67a1c3 100644 --- a/en/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/en/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -362,8 +362,8 @@ - - - + + + diff --git a/en/index.html b/en/index.html index 482faa1f..032f643b 100644 --- a/en/index.html +++ b/en/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -552,8 +552,8 @@ - - - + + + \ No newline at end of file diff --git a/en/legal/index.html b/en/legal/index.html index d5a7f1a9..0139a8d6 100644 --- a/en/legal/index.html +++ b/en/legal/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -317,8 +317,8 @@ - - - + + + diff --git a/en/msos-hub/index.html b/en/msos-hub/index.html index a2639045..605e68c2 100644 --- a/en/msos-hub/index.html +++ b/en/msos-hub/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/en/news/index.html b/en/news/index.html index 35680f2a..31cca38b 100644 --- a/en/news/index.html +++ b/en/news/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -576,11 +576,11 @@ - - - + + + - - + + diff --git a/en/news/meet-student-slovenia-2026/index.html b/en/news/meet-student-slovenia-2026/index.html index 7576f37f..8323abfd 100644 --- a/en/news/meet-student-slovenia-2026/index.html +++ b/en/news/meet-student-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -429,10 +429,10 @@ - - + + - - + + diff --git a/en/news/proof-of-means-updated-2026/index.html b/en/news/proof-of-means-updated-2026/index.html index 677a797d..96208fa4 100644 --- a/en/news/proof-of-means-updated-2026/index.html +++ b/en/news/proof-of-means-updated-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -302,9 +302,9 @@ - + - - + + diff --git a/en/press/index.html b/en/press/index.html index 7be782c6..24dd0ead 100644 --- a/en/press/index.html +++ b/en/press/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -54,7 +54,7 @@ - + @@ -459,7 +459,7 @@ - - + + diff --git a/en/privacy-policy/index.html b/en/privacy-policy/index.html index 187da7e2..cd272161 100644 --- a/en/privacy-policy/index.html +++ b/en/privacy-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -368,8 +368,8 @@ - - - + + + diff --git a/en/projects/humanitarian-tournament-in-maribor/index.html b/en/projects/humanitarian-tournament-in-maribor/index.html index 54170f7a..93540b2d 100644 --- a/en/projects/humanitarian-tournament-in-maribor/index.html +++ b/en/projects/humanitarian-tournament-in-maribor/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -403,8 +403,8 @@ - - - + + + diff --git a/en/projects/in-memory-of-frosina-kulakova/index.html b/en/projects/in-memory-of-frosina-kulakova/index.html index 6e589a9e..e48d90cc 100644 --- a/en/projects/in-memory-of-frosina-kulakova/index.html +++ b/en/projects/in-memory-of-frosina-kulakova/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -341,8 +341,8 @@ - - - + + + 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 6ee9215b..b07a4f7b 100644 --- a/en/projects/in-memory-of-the-kochani-victims/index.html +++ b/en/projects/in-memory-of-the-kochani-victims/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -349,8 +349,8 @@ - - - + + + diff --git a/en/projects/index.html b/en/projects/index.html index 513f7c68..885c0577 100644 --- a/en/projects/index.html +++ b/en/projects/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -511,9 +511,9 @@ - - - - + + + + \ No newline at end of file diff --git a/en/projects/joint-walk-path-around-the-wire/index.html b/en/projects/joint-walk-path-around-the-wire/index.html index 47214b54..c2adf4fe 100644 --- a/en/projects/joint-walk-path-around-the-wire/index.html +++ b/en/projects/joint-walk-path-around-the-wire/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/en/projects/kafanska-vecher-2025/index.html b/en/projects/kafanska-vecher-2025/index.html index 435a6ca1..685b963e 100644 --- a/en/projects/kafanska-vecher-2025/index.html +++ b/en/projects/kafanska-vecher-2025/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/en/projects/macedonian-student-night-in-ljubljana/index.html b/en/projects/macedonian-student-night-in-ljubljana/index.html index bc10552c..cf645c19 100644 --- a/en/projects/macedonian-student-night-in-ljubljana/index.html +++ b/en/projects/macedonian-student-night-in-ljubljana/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -419,8 +419,8 @@ - - - + + + \ No newline at end of file diff --git a/en/projects/meet-student-slovenia-2023/index.html b/en/projects/meet-student-slovenia-2023/index.html index d4cea97c..e515ee9a 100644 --- a/en/projects/meet-student-slovenia-2023/index.html +++ b/en/projects/meet-student-slovenia-2023/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -444,8 +444,8 @@ - - - + + + \ No newline at end of file diff --git a/en/projects/meet-student-slovenia-2024/index.html b/en/projects/meet-student-slovenia-2024/index.html index 1c0fcaea..6936c9f7 100644 --- a/en/projects/meet-student-slovenia-2024/index.html +++ b/en/projects/meet-student-slovenia-2024/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -443,8 +443,8 @@ - - - + + + \ No newline at end of file diff --git a/en/projects/morning-coffee-in-front-of-ctk-2026/index.html b/en/projects/morning-coffee-in-front-of-ctk-2026/index.html index 8430c988..2fda2d20 100644 --- a/en/projects/morning-coffee-in-front-of-ctk-2026/index.html +++ b/en/projects/morning-coffee-in-front-of-ctk-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + 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 3e777b8f..d5cfbfb4 100644 --- a/en/projects/morning-coffee-in-front-of-ctk/index.html +++ b/en/projects/morning-coffee-in-front-of-ctk/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -408,8 +408,8 @@ - - - + + + \ No newline at end of file diff --git a/en/projects/paint-and-wine-at-sunset/index.html b/en/projects/paint-and-wine-at-sunset/index.html index c77e9bda..a9c65bb7 100644 --- a/en/projects/paint-and-wine-at-sunset/index.html +++ b/en/projects/paint-and-wine-at-sunset/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/en/projects/president-siljanovska-davkova-lecture-2026/index.html b/en/projects/president-siljanovska-davkova-lecture-2026/index.html index fb471c7a..055fefda 100644 --- a/en/projects/president-siljanovska-davkova-lecture-2026/index.html +++ b/en/projects/president-siljanovska-davkova-lecture-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -402,8 +402,8 @@ - - - + + + diff --git a/en/projects/sepa-webinar-2026/index.html b/en/projects/sepa-webinar-2026/index.html index 2fa01836..27113839 100644 --- a/en/projects/sepa-webinar-2026/index.html +++ b/en/projects/sepa-webinar-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -375,8 +375,8 @@ - - - + + + diff --git a/en/projects/teambuilding-hub-opening-2026/index.html b/en/projects/teambuilding-hub-opening-2026/index.html index da9dd645..1eef3b1c 100644 --- a/en/projects/teambuilding-hub-opening-2026/index.html +++ b/en/projects/teambuilding-hub-opening-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/en/projects/watching-handball-together-in-slovenia/index.html b/en/projects/watching-handball-together-in-slovenia/index.html index 5d0afe1a..edc16eb9 100644 --- a/en/projects/watching-handball-together-in-slovenia/index.html +++ b/en/projects/watching-handball-together-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/en/projects/watching-macedonia-wales-football-match/index.html b/en/projects/watching-macedonia-wales-football-match/index.html index 5abdcaa0..9939e9bd 100644 --- a/en/projects/watching-macedonia-wales-football-match/index.html +++ b/en/projects/watching-macedonia-wales-football-match/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/en/student-welcome-guide/academic-life/index.html b/en/student-welcome-guide/academic-life/index.html index af343540..6d528008 100644 --- a/en/student-welcome-guide/academic-life/index.html +++ b/en/student-welcome-guide/academic-life/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/administrative-basics/index.html b/en/student-welcome-guide/administrative-basics/index.html index 3dffb44e..c0776c2e 100644 --- a/en/student-welcome-guide/administrative-basics/index.html +++ b/en/student-welcome-guide/administrative-basics/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -354,9 +354,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/admission-and-enrolment/index.html b/en/student-welcome-guide/admission-and-enrolment/index.html index d2a6779a..824cba84 100644 --- a/en/student-welcome-guide/admission-and-enrolment/index.html +++ b/en/student-welcome-guide/admission-and-enrolment/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/application-deadlines/index.html b/en/student-welcome-guide/application-deadlines/index.html index 1c269dd4..bae0a3f7 100644 --- a/en/student-welcome-guide/application-deadlines/index.html +++ b/en/student-welcome-guide/application-deadlines/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -361,9 +361,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/arrival-checklist/index.html b/en/student-welcome-guide/arrival-checklist/index.html index fad413a9..a6cd1c0b 100644 --- a/en/student-welcome-guide/arrival-checklist/index.html +++ b/en/student-welcome-guide/arrival-checklist/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -379,9 +379,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/bachelor-application/index.html b/en/student-welcome-guide/bachelor-application/index.html index 5612c9f6..6d6d9c90 100644 --- a/en/student-welcome-guide/bachelor-application/index.html +++ b/en/student-welcome-guide/bachelor-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,9 +391,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/choose-a-programme/index.html b/en/student-welcome-guide/choose-a-programme/index.html index f4c83b95..80425f17 100644 --- a/en/student-welcome-guide/choose-a-programme/index.html +++ b/en/student-welcome-guide/choose-a-programme/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -382,9 +382,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/complete-student-journey/index.html b/en/student-welcome-guide/complete-student-journey/index.html index da715635..42532dec 100644 --- a/en/student-welcome-guide/complete-student-journey/index.html +++ b/en/student-welcome-guide/complete-student-journey/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/document-preparation/index.html b/en/student-welcome-guide/document-preparation/index.html index b3547572..a187d452 100644 --- a/en/student-welcome-guide/document-preparation/index.html +++ b/en/student-welcome-guide/document-preparation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -356,9 +356,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/evs-application-guide/index.html b/en/student-welcome-guide/evs-application-guide/index.html index fe292924..75b0bdf7 100644 --- a/en/student-welcome-guide/evs-application-guide/index.html +++ b/en/student-welcome-guide/evs-application-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -374,9 +374,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/healthcare-in-slovenia/index.html b/en/student-welcome-guide/healthcare-in-slovenia/index.html index ca82585c..17a86adc 100644 --- a/en/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/en/student-welcome-guide/healthcare-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -417,9 +417,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/index.html b/en/student-welcome-guide/index.html index 6fdc17c6..c3927af3 100644 --- a/en/student-welcome-guide/index.html +++ b/en/student-welcome-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -525,10 +525,10 @@ - - - - - + + + + + diff --git a/en/student-welcome-guide/master-application/index.html b/en/student-welcome-guide/master-application/index.html index 5beb406b..d02339d5 100644 --- a/en/student-welcome-guide/master-application/index.html +++ b/en/student-welcome-guide/master-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -368,9 +368,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/means-accommodation-address/index.html b/en/student-welcome-guide/means-accommodation-address/index.html index 65a8fba6..af9532fe 100644 --- a/en/student-welcome-guide/means-accommodation-address/index.html +++ b/en/student-welcome-guide/means-accommodation-address/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -440,9 +440,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/my-route/index.html b/en/student-welcome-guide/my-route/index.html index 245abcc5..511697d6 100644 --- a/en/student-welcome-guide/my-route/index.html +++ b/en/student-welcome-guide/my-route/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - +

Your personal study route

@@ -268,9 +268,9 @@ - - - - + + + + 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 8486f9e9..23b41548 100644 --- a/en/student-welcome-guide/official-sources-and-checklists/index.html +++ b/en/student-welcome-guide/official-sources-and-checklists/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/prepare-to-move/index.html b/en/student-welcome-guide/prepare-to-move/index.html index 50f15842..41f51976 100644 --- a/en/student-welcome-guide/prepare-to-move/index.html +++ b/en/student-welcome-guide/prepare-to-move/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -412,9 +412,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/recognition-of-education/index.html b/en/student-welcome-guide/recognition-of-education/index.html index f3692b8f..a1ae78da 100644 --- a/en/student-welcome-guide/recognition-of-education/index.html +++ b/en/student-welcome-guide/recognition-of-education/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -357,9 +357,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/renew-change-graduate/index.html b/en/student-welcome-guide/renew-change-graduate/index.html index 445fc4cb..4e47c519 100644 --- a/en/student-welcome-guide/renew-change-graduate/index.html +++ b/en/student-welcome-guide/renew-change-graduate/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + 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 d9ef120b..a449fd62 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,9 +406,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-accommodation/index.html b/en/student-welcome-guide/student-accommodation/index.html index 40bb4412..58ea1103 100644 --- a/en/student-welcome-guide/student-accommodation/index.html +++ b/en/student-welcome-guide/student-accommodation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-budget/index.html b/en/student-welcome-guide/student-budget/index.html index 6c12bd8a..65741ab6 100644 --- a/en/student-welcome-guide/student-budget/index.html +++ b/en/student-welcome-guide/student-budget/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -376,9 +376,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-meals/index.html b/en/student-welcome-guide/student-meals/index.html index c945393e..3d95c50d 100644 --- a/en/student-welcome-guide/student-meals/index.html +++ b/en/student-welcome-guide/student-meals/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + 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 6b83cade..6c1721f6 100644 --- a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -401,9 +401,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-residence-permit/index.html b/en/student-welcome-guide/student-residence-permit/index.html index ff313e6a..e7c1513c 100644 --- a/en/student-welcome-guide/student-residence-permit/index.html +++ b/en/student-welcome-guide/student-residence-permit/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -418,9 +418,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-transport/index.html b/en/student-welcome-guide/student-transport/index.html index 9050f7b6..f38a685b 100644 --- a/en/student-welcome-guide/student-transport/index.html +++ b/en/student-welcome-guide/student-transport/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-work/index.html b/en/student-welcome-guide/student-work/index.html index b2f781d8..5ad2aebe 100644 --- a/en/student-welcome-guide/student-work/index.html +++ b/en/student-welcome-guide/student-work/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -359,9 +359,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/study-cities/index.html b/en/student-welcome-guide/study-cities/index.html index 8cb8d92d..c57dbde3 100644 --- a/en/student-welcome-guide/study-cities/index.html +++ b/en/student-welcome-guide/study-cities/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -419,9 +419,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/tuition-and-scholarships/index.html b/en/student-welcome-guide/tuition-and-scholarships/index.html index 229010fe..ce383f4c 100644 --- a/en/student-welcome-guide/tuition-and-scholarships/index.html +++ b/en/student-welcome-guide/tuition-and-scholarships/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -363,9 +363,9 @@ - - - - + + + + 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 251e1d5d..5db3c324 100644 --- a/en/student-welcome-guide/visa-and-residence-explained/index.html +++ b/en/student-welcome-guide/visa-and-residence-explained/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -390,9 +390,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/wellbeing-and-community/index.html b/en/student-welcome-guide/wellbeing-and-community/index.html index 168680f5..10208f9b 100644 --- a/en/student-welcome-guide/wellbeing-and-community/index.html +++ b/en/student-welcome-guide/wellbeing-and-community/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -355,9 +355,9 @@ - - - - + + + + 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 cf2a1d62..9e1b3e1e 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -425,9 +425,9 @@ - - - - + + + + diff --git a/en/support/index.html b/en/support/index.html index 9bbc7d26..5b997cf2 100644 --- a/en/support/index.html +++ b/en/support/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -596,9 +596,9 @@ - - - - + + + + diff --git a/en/timeline-and-milestones/index.html b/en/timeline-and-milestones/index.html index 043fe5a1..27fae8fa 100644 --- a/en/timeline-and-milestones/index.html +++ b/en/timeline-and-milestones/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -511,8 +511,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/about-us/index.html b/mk/about-us/index.html index 4fd19c2c..03a9cc48 100644 --- a/mk/about-us/index.html +++ b/mk/about-us/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -572,8 +572,8 @@ - - - + + + diff --git a/mk/become-a-member/index.html b/mk/become-a-member/index.html index a382a981..bb2538cf 100644 --- a/mk/become-a-member/index.html +++ b/mk/become-a-member/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -624,10 +624,10 @@ - - + + - - + + diff --git a/mk/blog/ad-futura-scholarship-slovenia-2026/index.html b/mk/blog/ad-futura-scholarship-slovenia-2026/index.html index d810cf25..cce153b5 100644 --- a/mk/blog/ad-futura-scholarship-slovenia-2026/index.html +++ b/mk/blog/ad-futura-scholarship-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -444,9 +444,9 @@ - + - - + + diff --git a/mk/blog/how-i-coped-with-leaving-home/index.html b/mk/blog/how-i-coped-with-leaving-home/index.html index bcdad0cd..2550bb5b 100644 --- a/mk/blog/how-i-coped-with-leaving-home/index.html +++ b/mk/blog/how-i-coped-with-leaving-home/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -348,9 +348,9 @@ - + - - + + 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 23341051..0b6ca678 100644 --- a/mk/blog/how-to-open-slovenian-bank-account/index.html +++ b/mk/blog/how-to-open-slovenian-bank-account/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -422,9 +422,9 @@ - + - - + + diff --git a/mk/blog/index.html b/mk/blog/index.html index aabf578e..80253a47 100644 --- a/mk/blog/index.html +++ b/mk/blog/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -434,11 +434,11 @@ - + - - - - + + + + diff --git a/mk/blog/learning-slovene-where-to-start/index.html b/mk/blog/learning-slovene-where-to-start/index.html index 1fa75c91..2396d369 100644 --- a/mk/blog/learning-slovene-where-to-start/index.html +++ b/mk/blog/learning-slovene-where-to-start/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -381,9 +381,9 @@ - + - - + + diff --git a/mk/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html b/mk/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html index 65536887..39a13d2b 100644 --- a/mk/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html +++ b/mk/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -393,9 +393,9 @@ - + - - + + diff --git a/mk/blog/welcome-days-slovenian-universities-2026-2027/index.html b/mk/blog/welcome-days-slovenian-universities-2026-2027/index.html index af1517f2..3e776220 100644 --- a/mk/blog/welcome-days-slovenian-universities-2026-2027/index.html +++ b/mk/blog/welcome-days-slovenian-universities-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,9 +384,9 @@ - + - - + + diff --git a/mk/blog/where-to-search-for-accommodation-in-slovenia/index.html b/mk/blog/where-to-search-for-accommodation-in-slovenia/index.html index 23f3d1b2..bee906a1 100644 --- a/mk/blog/where-to-search-for-accommodation-in-slovenia/index.html +++ b/mk/blog/where-to-search-for-accommodation-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -431,9 +431,9 @@ - + - - + + diff --git a/mk/cookie-policy/index.html b/mk/cookie-policy/index.html index 8f0f215f..d710ec06 100644 --- a/mk/cookie-policy/index.html +++ b/mk/cookie-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -322,8 +322,8 @@ - - - + + + diff --git a/mk/faq/index.html b/mk/faq/index.html index 3d336550..9786691c 100644 --- a/mk/faq/index.html +++ b/mk/faq/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -58,7 +58,7 @@ - + @@ -539,7 +539,7 @@ - - + + diff --git a/mk/gallery/index.html b/mk/gallery/index.html index d55f5f92..a4705812 100644 --- a/mk/gallery/index.html +++ b/mk/gallery/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -648,8 +648,8 @@ - - - + + + 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 52363533..9bd2ca6b 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + 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 ee6541f3..464c2d82 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/mk/get-to-know-macedonia/index.html b/mk/get-to-know-macedonia/index.html index 7f06d525..0a63f137 100644 --- a/mk/get-to-know-macedonia/index.html +++ b/mk/get-to-know-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -372,8 +372,8 @@ - - - + + + 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 5247ac8d..9d3eafde 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + 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 27ac4c2c..2caf793f 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -397,8 +397,8 @@ - - - + + + 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 36cf1f28..c314e5b7 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -387,8 +387,8 @@ - - - + + + 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 456b291c..abb85462 100644 --- a/mk/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/mk/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,8 +384,8 @@ - - - + + + 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 7e4dd090..e04e48b4 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -389,8 +389,8 @@ - - - + + + diff --git a/mk/get-to-know-slovenia/index.html b/mk/get-to-know-slovenia/index.html index 64abfd9e..a89dbddf 100644 --- a/mk/get-to-know-slovenia/index.html +++ b/mk/get-to-know-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -371,8 +371,8 @@ - - - + + + 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 92599636..8ecc6387 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,8 +385,8 @@ - - - + + + 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 a32a3673..63c0570c 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -375,8 +375,8 @@ - - - + + + 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 ff11c72f..4104b61e 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,8 +406,8 @@ - - - + + + 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 e983511b..88b439ca 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,8 +391,8 @@ - - - + + + 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 db423252..e4c4ee9f 100644 --- a/mk/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/mk/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -362,8 +362,8 @@ - - - + + + diff --git a/mk/index.html b/mk/index.html index fc385602..a3e1072f 100644 --- a/mk/index.html +++ b/mk/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -555,8 +555,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/legal/index.html b/mk/legal/index.html index c4d76f2c..86e32547 100644 --- a/mk/legal/index.html +++ b/mk/legal/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -317,8 +317,8 @@ - - - + + + diff --git a/mk/msos-hub/index.html b/mk/msos-hub/index.html index e1646ae1..3d151341 100644 --- a/mk/msos-hub/index.html +++ b/mk/msos-hub/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/mk/news/index.html b/mk/news/index.html index e90b6924..c88e13f8 100644 --- a/mk/news/index.html +++ b/mk/news/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -576,11 +576,11 @@ - - - + + + - - + + diff --git a/mk/news/meet-student-slovenia-2026/index.html b/mk/news/meet-student-slovenia-2026/index.html index a7cc3858..4cc13249 100644 --- a/mk/news/meet-student-slovenia-2026/index.html +++ b/mk/news/meet-student-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -431,10 +431,10 @@ - - + + - - + + diff --git a/mk/news/proof-of-means-updated-2026/index.html b/mk/news/proof-of-means-updated-2026/index.html index f357853b..4c867dfb 100644 --- a/mk/news/proof-of-means-updated-2026/index.html +++ b/mk/news/proof-of-means-updated-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -302,9 +302,9 @@ - + - - + + diff --git a/mk/press/index.html b/mk/press/index.html index f5d7e26d..3017eac1 100644 --- a/mk/press/index.html +++ b/mk/press/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -54,7 +54,7 @@ - + @@ -459,7 +459,7 @@ - - + + diff --git a/mk/privacy-policy/index.html b/mk/privacy-policy/index.html index b6c1fe16..563e744c 100644 --- a/mk/privacy-policy/index.html +++ b/mk/privacy-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -368,8 +368,8 @@ - - - + + + diff --git a/mk/projects/humanitarian-tournament-in-maribor/index.html b/mk/projects/humanitarian-tournament-in-maribor/index.html index ea09564b..7a8ebdb7 100644 --- a/mk/projects/humanitarian-tournament-in-maribor/index.html +++ b/mk/projects/humanitarian-tournament-in-maribor/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -403,8 +403,8 @@ - - - + + + diff --git a/mk/projects/in-memory-of-frosina-kulakova/index.html b/mk/projects/in-memory-of-frosina-kulakova/index.html index d4b8999c..f2bed7bd 100644 --- a/mk/projects/in-memory-of-frosina-kulakova/index.html +++ b/mk/projects/in-memory-of-frosina-kulakova/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -341,8 +341,8 @@ - - - + + + 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 6bb400bc..baaf967f 100644 --- a/mk/projects/in-memory-of-the-kochani-victims/index.html +++ b/mk/projects/in-memory-of-the-kochani-victims/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -349,8 +349,8 @@ - - - + + + diff --git a/mk/projects/index.html b/mk/projects/index.html index 669ba537..d2473bac 100644 --- a/mk/projects/index.html +++ b/mk/projects/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -513,9 +513,9 @@ - - - - + + + + \ No newline at end of file diff --git a/mk/projects/joint-walk-path-around-the-wire/index.html b/mk/projects/joint-walk-path-around-the-wire/index.html index 63bd0c36..7cba85a3 100644 --- a/mk/projects/joint-walk-path-around-the-wire/index.html +++ b/mk/projects/joint-walk-path-around-the-wire/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/mk/projects/kafanska-vecher-2025/index.html b/mk/projects/kafanska-vecher-2025/index.html index 9c866302..ade8ef3e 100644 --- a/mk/projects/kafanska-vecher-2025/index.html +++ b/mk/projects/kafanska-vecher-2025/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/mk/projects/macedonian-student-night-in-ljubljana/index.html b/mk/projects/macedonian-student-night-in-ljubljana/index.html index aefe7dd0..e0c92961 100644 --- a/mk/projects/macedonian-student-night-in-ljubljana/index.html +++ b/mk/projects/macedonian-student-night-in-ljubljana/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -414,8 +414,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/projects/meet-student-slovenia-2023/index.html b/mk/projects/meet-student-slovenia-2023/index.html index 7d44d828..d3a1fcb0 100644 --- a/mk/projects/meet-student-slovenia-2023/index.html +++ b/mk/projects/meet-student-slovenia-2023/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -439,8 +439,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/projects/meet-student-slovenia-2024/index.html b/mk/projects/meet-student-slovenia-2024/index.html index 331668aa..d714b1c6 100644 --- a/mk/projects/meet-student-slovenia-2024/index.html +++ b/mk/projects/meet-student-slovenia-2024/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -438,8 +438,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/projects/morning-coffee-in-front-of-ctk-2026/index.html b/mk/projects/morning-coffee-in-front-of-ctk-2026/index.html index 29c9dffa..c337f7a1 100644 --- a/mk/projects/morning-coffee-in-front-of-ctk-2026/index.html +++ b/mk/projects/morning-coffee-in-front-of-ctk-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + 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 a47d4026..140b8317 100644 --- a/mk/projects/morning-coffee-in-front-of-ctk/index.html +++ b/mk/projects/morning-coffee-in-front-of-ctk/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -401,8 +401,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/projects/paint-and-wine-at-sunset/index.html b/mk/projects/paint-and-wine-at-sunset/index.html index e9cecc85..6346bc06 100644 --- a/mk/projects/paint-and-wine-at-sunset/index.html +++ b/mk/projects/paint-and-wine-at-sunset/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/mk/projects/president-siljanovska-davkova-lecture-2026/index.html b/mk/projects/president-siljanovska-davkova-lecture-2026/index.html index a2689aa1..646679e7 100644 --- a/mk/projects/president-siljanovska-davkova-lecture-2026/index.html +++ b/mk/projects/president-siljanovska-davkova-lecture-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -402,8 +402,8 @@ - - - + + + diff --git a/mk/projects/sepa-webinar-2026/index.html b/mk/projects/sepa-webinar-2026/index.html index 8bc0b5e0..e2f6cacd 100644 --- a/mk/projects/sepa-webinar-2026/index.html +++ b/mk/projects/sepa-webinar-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -375,8 +375,8 @@ - - - + + + diff --git a/mk/projects/teambuilding-hub-opening-2026/index.html b/mk/projects/teambuilding-hub-opening-2026/index.html index 3266ca53..53961662 100644 --- a/mk/projects/teambuilding-hub-opening-2026/index.html +++ b/mk/projects/teambuilding-hub-opening-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/mk/projects/watching-handball-together-in-slovenia/index.html b/mk/projects/watching-handball-together-in-slovenia/index.html index 650b7987..95fe3ce4 100644 --- a/mk/projects/watching-handball-together-in-slovenia/index.html +++ b/mk/projects/watching-handball-together-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/mk/projects/watching-macedonia-wales-football-match/index.html b/mk/projects/watching-macedonia-wales-football-match/index.html index 13c67d03..8028a453 100644 --- a/mk/projects/watching-macedonia-wales-football-match/index.html +++ b/mk/projects/watching-macedonia-wales-football-match/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/mk/student-welcome-guide/academic-life/index.html b/mk/student-welcome-guide/academic-life/index.html index 15b81fb2..62a9c344 100644 --- a/mk/student-welcome-guide/academic-life/index.html +++ b/mk/student-welcome-guide/academic-life/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/administrative-basics/index.html b/mk/student-welcome-guide/administrative-basics/index.html index 42face53..ff9abf6b 100644 --- a/mk/student-welcome-guide/administrative-basics/index.html +++ b/mk/student-welcome-guide/administrative-basics/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -354,9 +354,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/admission-and-enrolment/index.html b/mk/student-welcome-guide/admission-and-enrolment/index.html index 583b2be5..a0412c71 100644 --- a/mk/student-welcome-guide/admission-and-enrolment/index.html +++ b/mk/student-welcome-guide/admission-and-enrolment/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/application-deadlines/index.html b/mk/student-welcome-guide/application-deadlines/index.html index eb56b84f..9b3edeb4 100644 --- a/mk/student-welcome-guide/application-deadlines/index.html +++ b/mk/student-welcome-guide/application-deadlines/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -361,9 +361,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/arrival-checklist/index.html b/mk/student-welcome-guide/arrival-checklist/index.html index f90eb88e..1cff27c7 100644 --- a/mk/student-welcome-guide/arrival-checklist/index.html +++ b/mk/student-welcome-guide/arrival-checklist/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -379,9 +379,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/bachelor-application/index.html b/mk/student-welcome-guide/bachelor-application/index.html index 7f48f3b2..a1194b25 100644 --- a/mk/student-welcome-guide/bachelor-application/index.html +++ b/mk/student-welcome-guide/bachelor-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,9 +391,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/choose-a-programme/index.html b/mk/student-welcome-guide/choose-a-programme/index.html index 45e399c2..1e640a06 100644 --- a/mk/student-welcome-guide/choose-a-programme/index.html +++ b/mk/student-welcome-guide/choose-a-programme/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -382,9 +382,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/complete-student-journey/index.html b/mk/student-welcome-guide/complete-student-journey/index.html index 71a8f4bf..022d51b1 100644 --- a/mk/student-welcome-guide/complete-student-journey/index.html +++ b/mk/student-welcome-guide/complete-student-journey/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/document-preparation/index.html b/mk/student-welcome-guide/document-preparation/index.html index c4d68ba5..62188374 100644 --- a/mk/student-welcome-guide/document-preparation/index.html +++ b/mk/student-welcome-guide/document-preparation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -356,9 +356,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/evs-application-guide/index.html b/mk/student-welcome-guide/evs-application-guide/index.html index d6a5c77f..2bda7ad9 100644 --- a/mk/student-welcome-guide/evs-application-guide/index.html +++ b/mk/student-welcome-guide/evs-application-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -374,9 +374,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/healthcare-in-slovenia/index.html b/mk/student-welcome-guide/healthcare-in-slovenia/index.html index 91bb1dfc..eee7e3b6 100644 --- a/mk/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/mk/student-welcome-guide/healthcare-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -417,9 +417,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/index.html b/mk/student-welcome-guide/index.html index 3b793145..b3e8195f 100644 --- a/mk/student-welcome-guide/index.html +++ b/mk/student-welcome-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -525,10 +525,10 @@ - - - - - + + + + + diff --git a/mk/student-welcome-guide/master-application/index.html b/mk/student-welcome-guide/master-application/index.html index 8c29033e..7057fbba 100644 --- a/mk/student-welcome-guide/master-application/index.html +++ b/mk/student-welcome-guide/master-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -368,9 +368,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/means-accommodation-address/index.html b/mk/student-welcome-guide/means-accommodation-address/index.html index 3a2c7b6a..21354c2b 100644 --- a/mk/student-welcome-guide/means-accommodation-address/index.html +++ b/mk/student-welcome-guide/means-accommodation-address/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -440,9 +440,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/my-route/index.html b/mk/student-welcome-guide/my-route/index.html index 677091da..d2a2d9c6 100644 --- a/mk/student-welcome-guide/my-route/index.html +++ b/mk/student-welcome-guide/my-route/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - +

Вашиот личен студиски пат

@@ -268,9 +268,9 @@ - - - - + + + + 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 7e621c22..da969271 100644 --- a/mk/student-welcome-guide/official-sources-and-checklists/index.html +++ b/mk/student-welcome-guide/official-sources-and-checklists/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/prepare-to-move/index.html b/mk/student-welcome-guide/prepare-to-move/index.html index 7c8c59e0..44a800f0 100644 --- a/mk/student-welcome-guide/prepare-to-move/index.html +++ b/mk/student-welcome-guide/prepare-to-move/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -412,9 +412,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/recognition-of-education/index.html b/mk/student-welcome-guide/recognition-of-education/index.html index 41f09452..4253b808 100644 --- a/mk/student-welcome-guide/recognition-of-education/index.html +++ b/mk/student-welcome-guide/recognition-of-education/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -357,9 +357,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/renew-change-graduate/index.html b/mk/student-welcome-guide/renew-change-graduate/index.html index 225a91d0..1462820e 100644 --- a/mk/student-welcome-guide/renew-change-graduate/index.html +++ b/mk/student-welcome-guide/renew-change-graduate/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + 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 4bc872ba..ff5ca4c9 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,9 +406,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-accommodation/index.html b/mk/student-welcome-guide/student-accommodation/index.html index 346779c1..c91e21e8 100644 --- a/mk/student-welcome-guide/student-accommodation/index.html +++ b/mk/student-welcome-guide/student-accommodation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-budget/index.html b/mk/student-welcome-guide/student-budget/index.html index d27a7a7e..7900c567 100644 --- a/mk/student-welcome-guide/student-budget/index.html +++ b/mk/student-welcome-guide/student-budget/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -376,9 +376,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-meals/index.html b/mk/student-welcome-guide/student-meals/index.html index c48cd6c6..5b66cacf 100644 --- a/mk/student-welcome-guide/student-meals/index.html +++ b/mk/student-welcome-guide/student-meals/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + 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 09cbdb19..0c943a5e 100644 --- a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -401,9 +401,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-residence-permit/index.html b/mk/student-welcome-guide/student-residence-permit/index.html index e33addbe..f12e23a5 100644 --- a/mk/student-welcome-guide/student-residence-permit/index.html +++ b/mk/student-welcome-guide/student-residence-permit/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -418,9 +418,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-transport/index.html b/mk/student-welcome-guide/student-transport/index.html index ecaecac3..138a990b 100644 --- a/mk/student-welcome-guide/student-transport/index.html +++ b/mk/student-welcome-guide/student-transport/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-work/index.html b/mk/student-welcome-guide/student-work/index.html index fbd17482..00263f4d 100644 --- a/mk/student-welcome-guide/student-work/index.html +++ b/mk/student-welcome-guide/student-work/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -359,9 +359,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/study-cities/index.html b/mk/student-welcome-guide/study-cities/index.html index 3f8c3bea..841e6a0e 100644 --- a/mk/student-welcome-guide/study-cities/index.html +++ b/mk/student-welcome-guide/study-cities/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -419,9 +419,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/tuition-and-scholarships/index.html b/mk/student-welcome-guide/tuition-and-scholarships/index.html index 613b4b23..48af0008 100644 --- a/mk/student-welcome-guide/tuition-and-scholarships/index.html +++ b/mk/student-welcome-guide/tuition-and-scholarships/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -363,9 +363,9 @@ - - - - + + + + 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 655db6c6..c0977080 100644 --- a/mk/student-welcome-guide/visa-and-residence-explained/index.html +++ b/mk/student-welcome-guide/visa-and-residence-explained/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -390,9 +390,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/wellbeing-and-community/index.html b/mk/student-welcome-guide/wellbeing-and-community/index.html index ac26e1e2..941236b4 100644 --- a/mk/student-welcome-guide/wellbeing-and-community/index.html +++ b/mk/student-welcome-guide/wellbeing-and-community/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -355,9 +355,9 @@ - - - - + + + + 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 331272ee..69dac629 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -425,9 +425,9 @@ - - - - + + + + diff --git a/mk/support/index.html b/mk/support/index.html index 02ba4c58..0f8badf8 100644 --- a/mk/support/index.html +++ b/mk/support/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -594,9 +594,9 @@ - - - - + + + + diff --git a/mk/timeline-and-milestones/index.html b/mk/timeline-and-milestones/index.html index 84deb6f1..65128172 100644 --- a/mk/timeline-and-milestones/index.html +++ b/mk/timeline-and-milestones/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -511,8 +511,8 @@ - - - + + + \ No newline at end of file diff --git a/si/about-us/index.html b/si/about-us/index.html index f85e06c0..7afb0f57 100644 --- a/si/about-us/index.html +++ b/si/about-us/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -572,8 +572,8 @@ - - - + + + diff --git a/si/become-a-member/index.html b/si/become-a-member/index.html index aac4d66a..45e416bb 100644 --- a/si/become-a-member/index.html +++ b/si/become-a-member/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -624,10 +624,10 @@ - - + + - - + + diff --git a/si/blog/ad-futura-scholarship-slovenia-2026/index.html b/si/blog/ad-futura-scholarship-slovenia-2026/index.html index 46cd7717..1b8ab01d 100644 --- a/si/blog/ad-futura-scholarship-slovenia-2026/index.html +++ b/si/blog/ad-futura-scholarship-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -444,9 +444,9 @@ - + - - + + diff --git a/si/blog/how-i-coped-with-leaving-home/index.html b/si/blog/how-i-coped-with-leaving-home/index.html index d737f5cf..da334ba2 100644 --- a/si/blog/how-i-coped-with-leaving-home/index.html +++ b/si/blog/how-i-coped-with-leaving-home/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -348,9 +348,9 @@ - + - - + + 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 84b19088..310300ef 100644 --- a/si/blog/how-to-open-slovenian-bank-account/index.html +++ b/si/blog/how-to-open-slovenian-bank-account/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -422,9 +422,9 @@ - + - - + + diff --git a/si/blog/index.html b/si/blog/index.html index 99295bc4..786cddc1 100644 --- a/si/blog/index.html +++ b/si/blog/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -434,11 +434,11 @@ - + - - - - + + + + diff --git a/si/blog/learning-slovene-where-to-start/index.html b/si/blog/learning-slovene-where-to-start/index.html index a0aa1d6c..3bd1fbbd 100644 --- a/si/blog/learning-slovene-where-to-start/index.html +++ b/si/blog/learning-slovene-where-to-start/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -381,9 +381,9 @@ - + - - + + diff --git a/si/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html b/si/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html index ded39011..ed5eff55 100644 --- a/si/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html +++ b/si/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -393,9 +393,9 @@ - + - - + + diff --git a/si/blog/welcome-days-slovenian-universities-2026-2027/index.html b/si/blog/welcome-days-slovenian-universities-2026-2027/index.html index bcc6da8e..85b88c37 100644 --- a/si/blog/welcome-days-slovenian-universities-2026-2027/index.html +++ b/si/blog/welcome-days-slovenian-universities-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,9 +384,9 @@ - + - - + + diff --git a/si/blog/where-to-search-for-accommodation-in-slovenia/index.html b/si/blog/where-to-search-for-accommodation-in-slovenia/index.html index ed5ef202..2981b255 100644 --- a/si/blog/where-to-search-for-accommodation-in-slovenia/index.html +++ b/si/blog/where-to-search-for-accommodation-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -431,9 +431,9 @@ - + - - + + diff --git a/si/cookie-policy/index.html b/si/cookie-policy/index.html index dabc5abb..5ec5fd69 100644 --- a/si/cookie-policy/index.html +++ b/si/cookie-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -322,8 +322,8 @@ - - - + + + diff --git a/si/faq/index.html b/si/faq/index.html index 5cb02db0..aed026a3 100644 --- a/si/faq/index.html +++ b/si/faq/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -58,7 +58,7 @@ - + @@ -539,7 +539,7 @@ - - + + diff --git a/si/gallery/index.html b/si/gallery/index.html index 2571fc21..3481a9f6 100644 --- a/si/gallery/index.html +++ b/si/gallery/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -648,8 +648,8 @@ - - - + + + 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 ec3c7cd6..ea487fb4 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + 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 f8a8b499..7d6ff35e 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/si/get-to-know-macedonia/index.html b/si/get-to-know-macedonia/index.html index eefab11d..3ed37375 100644 --- a/si/get-to-know-macedonia/index.html +++ b/si/get-to-know-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -372,8 +372,8 @@ - - - + + + 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 7357511d..258457e4 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + 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 3f14ba01..a14f3d75 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -397,8 +397,8 @@ - - - + + + 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 f3c04a76..9e8486d9 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -387,8 +387,8 @@ - - - + + + 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 0191d9c6..de0b6474 100644 --- a/si/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/si/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,8 +384,8 @@ - - - + + + 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 0a6d8fd8..e28abe0b 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -389,8 +389,8 @@ - - - + + + diff --git a/si/get-to-know-slovenia/index.html b/si/get-to-know-slovenia/index.html index 88fc07a8..6e9f4988 100644 --- a/si/get-to-know-slovenia/index.html +++ b/si/get-to-know-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -371,8 +371,8 @@ - - - + + + 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 19d4791a..4d31c736 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,8 +385,8 @@ - - - + + + 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 1fb4f94f..9c222cca 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + 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 dacccb1f..47a4a36d 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,8 +406,8 @@ - - - + + + 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 3c821e33..157a636c 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,8 +391,8 @@ - - - + + + 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 c430fc84..d4abf34c 100644 --- a/si/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/si/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -362,8 +362,8 @@ - - - + + + diff --git a/si/index.html b/si/index.html index c42811fd..3e9a5e77 100644 --- a/si/index.html +++ b/si/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -555,8 +555,8 @@ - - - + + + \ No newline at end of file diff --git a/si/legal/index.html b/si/legal/index.html index 07fb46de..ee9a2ef2 100644 --- a/si/legal/index.html +++ b/si/legal/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -317,8 +317,8 @@ - - - + + + diff --git a/si/msos-hub/index.html b/si/msos-hub/index.html index 78e69783..897dc5a7 100644 --- a/si/msos-hub/index.html +++ b/si/msos-hub/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/si/news/index.html b/si/news/index.html index 5114907c..b434d47c 100644 --- a/si/news/index.html +++ b/si/news/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -576,11 +576,11 @@ - - - + + + - - + + diff --git a/si/news/meet-student-slovenia-2026/index.html b/si/news/meet-student-slovenia-2026/index.html index dee61347..9c83b838 100644 --- a/si/news/meet-student-slovenia-2026/index.html +++ b/si/news/meet-student-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -431,10 +431,10 @@ - - + + - - + + diff --git a/si/news/proof-of-means-updated-2026/index.html b/si/news/proof-of-means-updated-2026/index.html index fb1d53c1..7a565214 100644 --- a/si/news/proof-of-means-updated-2026/index.html +++ b/si/news/proof-of-means-updated-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -302,9 +302,9 @@ - + - - + + diff --git a/si/press/index.html b/si/press/index.html index 89c69625..9776329b 100644 --- a/si/press/index.html +++ b/si/press/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -54,7 +54,7 @@ - + @@ -459,7 +459,7 @@ - - + + diff --git a/si/privacy-policy/index.html b/si/privacy-policy/index.html index 5a25f9f4..914306a1 100644 --- a/si/privacy-policy/index.html +++ b/si/privacy-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -368,8 +368,8 @@ - - - + + + diff --git a/si/projects/humanitarian-tournament-in-maribor/index.html b/si/projects/humanitarian-tournament-in-maribor/index.html index 3727f255..29394867 100644 --- a/si/projects/humanitarian-tournament-in-maribor/index.html +++ b/si/projects/humanitarian-tournament-in-maribor/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -403,8 +403,8 @@ - - - + + + diff --git a/si/projects/in-memory-of-frosina-kulakova/index.html b/si/projects/in-memory-of-frosina-kulakova/index.html index 190904c9..9dd4ac86 100644 --- a/si/projects/in-memory-of-frosina-kulakova/index.html +++ b/si/projects/in-memory-of-frosina-kulakova/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -341,8 +341,8 @@ - - - + + + 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 89f0cfb9..ea7ecdc9 100644 --- a/si/projects/in-memory-of-the-kochani-victims/index.html +++ b/si/projects/in-memory-of-the-kochani-victims/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -349,8 +349,8 @@ - - - + + + diff --git a/si/projects/index.html b/si/projects/index.html index 2731b3b0..f3c7e05c 100644 --- a/si/projects/index.html +++ b/si/projects/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -513,9 +513,9 @@ - - - - + + + + \ No newline at end of file diff --git a/si/projects/joint-walk-path-around-the-wire/index.html b/si/projects/joint-walk-path-around-the-wire/index.html index 13c3e472..f4e528f5 100644 --- a/si/projects/joint-walk-path-around-the-wire/index.html +++ b/si/projects/joint-walk-path-around-the-wire/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/si/projects/kafanska-vecher-2025/index.html b/si/projects/kafanska-vecher-2025/index.html index 0fadd9d3..61787e2e 100644 --- a/si/projects/kafanska-vecher-2025/index.html +++ b/si/projects/kafanska-vecher-2025/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/si/projects/macedonian-student-night-in-ljubljana/index.html b/si/projects/macedonian-student-night-in-ljubljana/index.html index 87ad81be..31361db3 100644 --- a/si/projects/macedonian-student-night-in-ljubljana/index.html +++ b/si/projects/macedonian-student-night-in-ljubljana/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -394,8 +394,8 @@ - - - + + + \ No newline at end of file diff --git a/si/projects/meet-student-slovenia-2023/index.html b/si/projects/meet-student-slovenia-2023/index.html index b33740f5..5f0b8376 100644 --- a/si/projects/meet-student-slovenia-2023/index.html +++ b/si/projects/meet-student-slovenia-2023/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -439,8 +439,8 @@ - - - + + + \ No newline at end of file diff --git a/si/projects/meet-student-slovenia-2024/index.html b/si/projects/meet-student-slovenia-2024/index.html index a8e55b97..72e4287a 100644 --- a/si/projects/meet-student-slovenia-2024/index.html +++ b/si/projects/meet-student-slovenia-2024/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -418,8 +418,8 @@ - - - + + + \ No newline at end of file diff --git a/si/projects/morning-coffee-in-front-of-ctk-2026/index.html b/si/projects/morning-coffee-in-front-of-ctk-2026/index.html index 7919e126..621bc8eb 100644 --- a/si/projects/morning-coffee-in-front-of-ctk-2026/index.html +++ b/si/projects/morning-coffee-in-front-of-ctk-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + 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 685d0508..d274f5fd 100644 --- a/si/projects/morning-coffee-in-front-of-ctk/index.html +++ b/si/projects/morning-coffee-in-front-of-ctk/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -383,8 +383,8 @@ - - - + + + \ No newline at end of file diff --git a/si/projects/paint-and-wine-at-sunset/index.html b/si/projects/paint-and-wine-at-sunset/index.html index b2050489..4dd60fb7 100644 --- a/si/projects/paint-and-wine-at-sunset/index.html +++ b/si/projects/paint-and-wine-at-sunset/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/si/projects/president-siljanovska-davkova-lecture-2026/index.html b/si/projects/president-siljanovska-davkova-lecture-2026/index.html index fbc5be7f..55fe30bc 100644 --- a/si/projects/president-siljanovska-davkova-lecture-2026/index.html +++ b/si/projects/president-siljanovska-davkova-lecture-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -402,8 +402,8 @@ - - - + + + diff --git a/si/projects/sepa-webinar-2026/index.html b/si/projects/sepa-webinar-2026/index.html index f30239f9..f1253e27 100644 --- a/si/projects/sepa-webinar-2026/index.html +++ b/si/projects/sepa-webinar-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -375,8 +375,8 @@ - - - + + + diff --git a/si/projects/teambuilding-hub-opening-2026/index.html b/si/projects/teambuilding-hub-opening-2026/index.html index dc41c83f..b5117675 100644 --- a/si/projects/teambuilding-hub-opening-2026/index.html +++ b/si/projects/teambuilding-hub-opening-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/si/projects/watching-handball-together-in-slovenia/index.html b/si/projects/watching-handball-together-in-slovenia/index.html index 9ac4b66c..1e2ba3a3 100644 --- a/si/projects/watching-handball-together-in-slovenia/index.html +++ b/si/projects/watching-handball-together-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/si/projects/watching-macedonia-wales-football-match/index.html b/si/projects/watching-macedonia-wales-football-match/index.html index 469eec5f..3073a5d3 100644 --- a/si/projects/watching-macedonia-wales-football-match/index.html +++ b/si/projects/watching-macedonia-wales-football-match/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/si/student-welcome-guide/academic-life/index.html b/si/student-welcome-guide/academic-life/index.html index 2d1e40a2..a4d1bb86 100644 --- a/si/student-welcome-guide/academic-life/index.html +++ b/si/student-welcome-guide/academic-life/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/administrative-basics/index.html b/si/student-welcome-guide/administrative-basics/index.html index 5df2312a..5322842b 100644 --- a/si/student-welcome-guide/administrative-basics/index.html +++ b/si/student-welcome-guide/administrative-basics/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -354,9 +354,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/admission-and-enrolment/index.html b/si/student-welcome-guide/admission-and-enrolment/index.html index 1fc5b2fb..b1a1d78a 100644 --- a/si/student-welcome-guide/admission-and-enrolment/index.html +++ b/si/student-welcome-guide/admission-and-enrolment/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/application-deadlines/index.html b/si/student-welcome-guide/application-deadlines/index.html index 3e18b2c6..0a330db6 100644 --- a/si/student-welcome-guide/application-deadlines/index.html +++ b/si/student-welcome-guide/application-deadlines/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -361,9 +361,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/arrival-checklist/index.html b/si/student-welcome-guide/arrival-checklist/index.html index a9eec1e1..dae2f11a 100644 --- a/si/student-welcome-guide/arrival-checklist/index.html +++ b/si/student-welcome-guide/arrival-checklist/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -379,9 +379,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/bachelor-application/index.html b/si/student-welcome-guide/bachelor-application/index.html index daa6d2c4..1bc9901e 100644 --- a/si/student-welcome-guide/bachelor-application/index.html +++ b/si/student-welcome-guide/bachelor-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,9 +391,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/choose-a-programme/index.html b/si/student-welcome-guide/choose-a-programme/index.html index 73db4430..513ced4e 100644 --- a/si/student-welcome-guide/choose-a-programme/index.html +++ b/si/student-welcome-guide/choose-a-programme/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -382,9 +382,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/complete-student-journey/index.html b/si/student-welcome-guide/complete-student-journey/index.html index b90acdbc..827be823 100644 --- a/si/student-welcome-guide/complete-student-journey/index.html +++ b/si/student-welcome-guide/complete-student-journey/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/document-preparation/index.html b/si/student-welcome-guide/document-preparation/index.html index 1ababd03..fa9986de 100644 --- a/si/student-welcome-guide/document-preparation/index.html +++ b/si/student-welcome-guide/document-preparation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -356,9 +356,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/evs-application-guide/index.html b/si/student-welcome-guide/evs-application-guide/index.html index 6e0a4093..a05e36bf 100644 --- a/si/student-welcome-guide/evs-application-guide/index.html +++ b/si/student-welcome-guide/evs-application-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -374,9 +374,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/healthcare-in-slovenia/index.html b/si/student-welcome-guide/healthcare-in-slovenia/index.html index daa8c3eb..aa64a8e4 100644 --- a/si/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/si/student-welcome-guide/healthcare-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -417,9 +417,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/index.html b/si/student-welcome-guide/index.html index 2838bec3..930323a0 100644 --- a/si/student-welcome-guide/index.html +++ b/si/student-welcome-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -525,10 +525,10 @@ - - - - - + + + + + diff --git a/si/student-welcome-guide/master-application/index.html b/si/student-welcome-guide/master-application/index.html index 56c5683d..4060a640 100644 --- a/si/student-welcome-guide/master-application/index.html +++ b/si/student-welcome-guide/master-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -368,9 +368,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/means-accommodation-address/index.html b/si/student-welcome-guide/means-accommodation-address/index.html index fa3163fc..d9124601 100644 --- a/si/student-welcome-guide/means-accommodation-address/index.html +++ b/si/student-welcome-guide/means-accommodation-address/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -440,9 +440,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/my-route/index.html b/si/student-welcome-guide/my-route/index.html index 0d6289a3..dbdb2d32 100644 --- a/si/student-welcome-guide/my-route/index.html +++ b/si/student-welcome-guide/my-route/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - +

Vaša osebna študijska pot

@@ -268,9 +268,9 @@ - - - - + + + + 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 7d5c0b10..ee65dc83 100644 --- a/si/student-welcome-guide/official-sources-and-checklists/index.html +++ b/si/student-welcome-guide/official-sources-and-checklists/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/prepare-to-move/index.html b/si/student-welcome-guide/prepare-to-move/index.html index ba627e23..81c7a45d 100644 --- a/si/student-welcome-guide/prepare-to-move/index.html +++ b/si/student-welcome-guide/prepare-to-move/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -412,9 +412,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/recognition-of-education/index.html b/si/student-welcome-guide/recognition-of-education/index.html index 25da63ad..b5d21850 100644 --- a/si/student-welcome-guide/recognition-of-education/index.html +++ b/si/student-welcome-guide/recognition-of-education/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -357,9 +357,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/renew-change-graduate/index.html b/si/student-welcome-guide/renew-change-graduate/index.html index 6a0be107..06d7430e 100644 --- a/si/student-welcome-guide/renew-change-graduate/index.html +++ b/si/student-welcome-guide/renew-change-graduate/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + 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 a4a2c828..39a452c4 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,9 +406,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-accommodation/index.html b/si/student-welcome-guide/student-accommodation/index.html index 9fa47db3..236f7c2a 100644 --- a/si/student-welcome-guide/student-accommodation/index.html +++ b/si/student-welcome-guide/student-accommodation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-budget/index.html b/si/student-welcome-guide/student-budget/index.html index de164194..0c0bc782 100644 --- a/si/student-welcome-guide/student-budget/index.html +++ b/si/student-welcome-guide/student-budget/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -376,9 +376,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-meals/index.html b/si/student-welcome-guide/student-meals/index.html index 022b75c9..dee0a826 100644 --- a/si/student-welcome-guide/student-meals/index.html +++ b/si/student-welcome-guide/student-meals/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + 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 f7734fff..9fcb6329 100644 --- a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -401,9 +401,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-residence-permit/index.html b/si/student-welcome-guide/student-residence-permit/index.html index 1f13e591..eece1e7d 100644 --- a/si/student-welcome-guide/student-residence-permit/index.html +++ b/si/student-welcome-guide/student-residence-permit/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -418,9 +418,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-transport/index.html b/si/student-welcome-guide/student-transport/index.html index d4fd898e..ad5ce770 100644 --- a/si/student-welcome-guide/student-transport/index.html +++ b/si/student-welcome-guide/student-transport/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-work/index.html b/si/student-welcome-guide/student-work/index.html index 08cc4723..1044756e 100644 --- a/si/student-welcome-guide/student-work/index.html +++ b/si/student-welcome-guide/student-work/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -359,9 +359,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/study-cities/index.html b/si/student-welcome-guide/study-cities/index.html index 0cb9087b..7f06d6ba 100644 --- a/si/student-welcome-guide/study-cities/index.html +++ b/si/student-welcome-guide/study-cities/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -419,9 +419,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/tuition-and-scholarships/index.html b/si/student-welcome-guide/tuition-and-scholarships/index.html index 52b69790..573aeffe 100644 --- a/si/student-welcome-guide/tuition-and-scholarships/index.html +++ b/si/student-welcome-guide/tuition-and-scholarships/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -363,9 +363,9 @@ - - - - + + + + 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 d18d7430..af290efb 100644 --- a/si/student-welcome-guide/visa-and-residence-explained/index.html +++ b/si/student-welcome-guide/visa-and-residence-explained/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -390,9 +390,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/wellbeing-and-community/index.html b/si/student-welcome-guide/wellbeing-and-community/index.html index ef6ba664..60721fb3 100644 --- a/si/student-welcome-guide/wellbeing-and-community/index.html +++ b/si/student-welcome-guide/wellbeing-and-community/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -355,9 +355,9 @@ - - - - + + + + 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 a99cd260..2be2bab9 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 @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -425,9 +425,9 @@ - - - - + + + + diff --git a/si/support/index.html b/si/support/index.html index 9d3b6dae..513b30ac 100644 --- a/si/support/index.html +++ b/si/support/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -596,9 +596,9 @@ - - - - + + + + diff --git a/si/timeline-and-milestones/index.html b/si/timeline-and-milestones/index.html index b0de42dd..e5ffabcb 100644 --- a/si/timeline-and-milestones/index.html +++ b/si/timeline-and-milestones/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -511,8 +511,8 @@ - - - + + + \ No newline at end of file diff --git a/tools/build_site.py b/tools/build_site.py index 44e5df82..3ffade5a 100644 --- a/tools/build_site.py +++ b/tools/build_site.py @@ -37,6 +37,9 @@ BUILD_STEPS = [ ("Inject SEO + rebuild sitemap/robots", ["tools/seo_inject.py", "--all", "--sitemap"]), ("Rebuild bot/AI discovery files", ["tools/build_botlinks.py"]), ("Rebuild offline assistant search index", ["tools/build_search_index.py"]), + # Last: stamp a content-hash ?v= on local CSS/JS refs so deploys aren't + # served stale from cache. Must run after every step that writes pages. + ("Cache-bust CSS/JS references", ["tools/cache_bust.py"]), ] IMAGES_STEP = ("Optimise images to WebP + update refs", ["optimize_images.py"]) CHECK_STEP = ("Verify rendered pages match content/", ["tools/build_content.py", "--check"]) diff --git a/tools/cache_bust.py b/tools/cache_bust.py new file mode 100644 index 00000000..48c4a5d4 --- /dev/null +++ b/tools/cache_bust.py @@ -0,0 +1,80 @@ +#!/usr/bin/env python3 +""" +cache_bust.py -- stamp a content-hash version onto local CSS/JS references so a +deploy is picked up immediately instead of serving stale cached assets. + +Why: assets are served without far-future immutable caching AND `main.css` pulls +its 25 partials via `@import` (whose URLs the browser caches independently). So a +CSS/JS change could stay invisible until the browser revalidated. This appends +`?v=` to: + - every local `` / `