diff --git a/404.html b/404.html index 2496eb3e..b4b6d70c 100644 --- a/404.html +++ b/404.html @@ -25,7 +25,7 @@ - + @@ -70,7 +70,7 @@

- - + + diff --git a/consent.js b/consent.js index 606880fd..985c7049 100644 --- a/consent.js +++ b/consent.js @@ -11,12 +11,12 @@ var lang = docLang === 'sl' ? 'si' : (['en', 'mk', 'si'].indexOf(docLang) === -1 ? 'en' : docLang); var T = { - en: { text: 'We use cookies to measure how the site is used and improve it. You can accept or decline analytics cookies.', - accept: 'Accept', decline: 'Decline', policy: 'Cookie policy', aria: 'Cookie consent' }, - mk: { text: 'Користиме колачиња за да измериме како се користи страницата и да ја подобриме. Можете да ги прифатите или одбиете аналитичките колачиња.', - accept: 'Прифати', decline: 'Одбиј', policy: 'Политика за колачиња', aria: 'Согласност за колачиња' }, - si: { text: 'Uporabljamo piškotke, da izmerimo, kako se stran uporablja, in jo izboljšamo. Analitične piškotke lahko sprejmete ali zavrnete.', - accept: 'Sprejmi', decline: 'Zavrni', policy: 'Politika piškotkov', aria: 'Soglasje za piškotke' } + en: { text: 'Help us improve MSOS for students — allow anonymous analytics so we can see what students find useful. No ads, and we never sell your data.', + accept: 'Allow', decline: 'Decline', policy: 'Cookie policy', aria: 'Cookie consent' }, + mk: { text: 'Помогнете ни да го подобриме MSOS за студентите — дозволете анонимна аналитика за да видиме што им користи. Без реклами и никогаш не ги продаваме вашите податоци.', + accept: 'Дозволи', decline: 'Одбиј', policy: 'Политика за колачиња', aria: 'Согласност за колачиња' }, + si: { text: 'Pomagajte nam izboljšati MSOS za študente — dovolite anonimno analitiko, da vidimo, kaj je koristno. Brez oglasov, vaših podatkov pa nikoli ne prodajamo.', + accept: 'Dovoli', decline: 'Zavrni', policy: 'Politika piškotkov', aria: 'Soglasje za piškotke' } }; var t = T[lang]; var policyHref = '/' + lang + '/cookie-policy/'; @@ -25,10 +25,9 @@ function grant() { gtagSafe(); - window.gtag('consent', 'update', { - ad_storage: 'granted', ad_user_data: 'granted', - ad_personalization: 'granted', analytics_storage: 'granted' - }); + // Analytics only — MSOS runs no ads, so advertising consent stays denied + // (keeps what we switch on consistent with what the banner tells users). + window.gtag('consent', 'update', { analytics_storage: 'granted' }); } function injectStyles() { diff --git a/css/main.css b/css/main.css index 53311bfc..d796327e 100644 --- a/css/main.css +++ b/css/main.css @@ -15,36 +15,36 @@ */ /* 1. Base Styles */ -@import 'base/_base.css?v=f95de694'; -@import 'base/_typography.css?v=f95de694'; +@import 'base/_base.css?v=a90a6258'; +@import 'base/_typography.css?v=a90a6258'; /* 2. Layout Components */ -@import 'layout/_header.css?v=f95de694'; -@import 'layout/_footer.css?v=f95de694'; +@import 'layout/_header.css?v=a90a6258'; +@import 'layout/_footer.css?v=a90a6258'; /* 3. Reusable Components */ -@import 'components/_buttons.css?v=f95de694'; -@import 'components/_cards.css?v=f95de694'; -@import 'components/_lang-banner.css?v=f95de694'; -@import 'components/_lightbox.css?v=f95de694'; +@import 'components/_buttons.css?v=a90a6258'; +@import 'components/_cards.css?v=a90a6258'; +@import 'components/_lang-banner.css?v=a90a6258'; +@import 'components/_lightbox.css?v=a90a6258'; /* 4. Page-specific Styles */ -@import 'pages/_home.css?v=f95de694'; -@import 'pages/_projects.css?v=f95de694'; -@import 'pages/_article.css?v=f95de694'; -@import 'pages/_about.css?v=f95de694'; -@import 'pages/_timeline.css?v=f95de694'; -@import 'pages/_guide.css?v=f95de694'; -@import 'pages/_faq.css?v=f95de694'; -@import 'pages/_blog.css?v=f95de694'; -@import 'pages/_news.css?v=f95de694'; -@import 'pages/_member.css?v=f95de694'; -@import 'pages/_support.css?v=f95de694'; -@import 'pages/_hub.css?v=f95de694'; -@import 'pages/_legal.css?v=f95de694'; -@import 'pages/_gallery.css?v=f95de694'; -@import 'pages/_press.css?v=f95de694'; -@import 'pages/_event.css?v=f95de694'; +@import 'pages/_home.css?v=a90a6258'; +@import 'pages/_projects.css?v=a90a6258'; +@import 'pages/_article.css?v=a90a6258'; +@import 'pages/_about.css?v=a90a6258'; +@import 'pages/_timeline.css?v=a90a6258'; +@import 'pages/_guide.css?v=a90a6258'; +@import 'pages/_faq.css?v=a90a6258'; +@import 'pages/_blog.css?v=a90a6258'; +@import 'pages/_news.css?v=a90a6258'; +@import 'pages/_member.css?v=a90a6258'; +@import 'pages/_support.css?v=a90a6258'; +@import 'pages/_hub.css?v=a90a6258'; +@import 'pages/_legal.css?v=a90a6258'; +@import 'pages/_gallery.css?v=a90a6258'; +@import 'pages/_press.css?v=a90a6258'; +@import 'pages/_event.css?v=a90a6258'; /* Loaded last so the shared filter bar wins over per-page chip styles. */ -@import 'pages/_filterbar.css?v=f95de694'; \ No newline at end of file +@import 'pages/_filterbar.css?v=a90a6258'; \ No newline at end of file diff --git a/en/about-us/index.html b/en/about-us/index.html index 82896100..3e54732e 100644 --- a/en/about-us/index.html +++ b/en/about-us/index.html @@ -59,7 +59,7 @@ - + @@ -574,8 +574,8 @@ - - - + + + diff --git a/en/become-a-member/index.html b/en/become-a-member/index.html index 2f3f2e67..8c369506 100644 --- a/en/become-a-member/index.html +++ b/en/become-a-member/index.html @@ -59,7 +59,7 @@ - + @@ -626,10 +626,10 @@ - - + + - - + + diff --git a/en/blog/ad-futura-scholarship-slovenia-2026/index.html b/en/blog/ad-futura-scholarship-slovenia-2026/index.html index 4ac32e30..592f29a2 100644 --- a/en/blog/ad-futura-scholarship-slovenia-2026/index.html +++ b/en/blog/ad-futura-scholarship-slovenia-2026/index.html @@ -61,7 +61,7 @@ - + @@ -446,9 +446,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 3088cbee..f378a055 100644 --- a/en/blog/how-i-coped-with-leaving-home/index.html +++ b/en/blog/how-i-coped-with-leaving-home/index.html @@ -61,7 +61,7 @@ - + @@ -350,9 +350,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 7a4b8fce..407231ff 100644 --- a/en/blog/how-to-open-slovenian-bank-account/index.html +++ b/en/blog/how-to-open-slovenian-bank-account/index.html @@ -61,7 +61,7 @@ - + @@ -424,9 +424,9 @@ - + - - + + diff --git a/en/blog/index.html b/en/blog/index.html index 6ba9ff2b..e1c3530e 100644 --- a/en/blog/index.html +++ b/en/blog/index.html @@ -59,7 +59,7 @@ - + @@ -436,11 +436,11 @@ - + - - - - + + + + diff --git a/en/blog/learning-slovene-where-to-start/index.html b/en/blog/learning-slovene-where-to-start/index.html index 5b84e2c7..dac33ad8 100644 --- a/en/blog/learning-slovene-where-to-start/index.html +++ b/en/blog/learning-slovene-where-to-start/index.html @@ -61,7 +61,7 @@ - + @@ -383,9 +383,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 7066d557..7cac48a5 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 @@ -61,7 +61,7 @@ - + @@ -395,9 +395,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 59207964..e7337cb8 100644 --- a/en/blog/welcome-days-slovenian-universities-2026-2027/index.html +++ b/en/blog/welcome-days-slovenian-universities-2026-2027/index.html @@ -61,7 +61,7 @@ - + @@ -386,9 +386,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 05ac2161..501a93d4 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 @@ -61,7 +61,7 @@ - + @@ -439,9 +439,9 @@ - + - - + + diff --git a/en/cookie-policy/index.html b/en/cookie-policy/index.html index 5daae0b7..eb0cf6bb 100644 --- a/en/cookie-policy/index.html +++ b/en/cookie-policy/index.html @@ -59,7 +59,7 @@ - + @@ -324,8 +324,8 @@ - - - + + + diff --git a/en/faq/index.html b/en/faq/index.html index 22e74b32..3a61de1d 100644 --- a/en/faq/index.html +++ b/en/faq/index.html @@ -60,7 +60,7 @@ - + @@ -541,7 +541,7 @@ - - + + diff --git a/en/gallery/index.html b/en/gallery/index.html index 2d6e1076..a0c8338f 100644 --- a/en/gallery/index.html +++ b/en/gallery/index.html @@ -59,7 +59,7 @@ - + @@ -650,8 +650,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 930ec9b1..383bddc0 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 @@ -61,7 +61,7 @@ - + @@ -401,8 +401,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 edaf110f..e00a8866 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 @@ -61,7 +61,7 @@ - + @@ -407,8 +407,8 @@ - - - + + + diff --git a/en/get-to-know-macedonia/index.html b/en/get-to-know-macedonia/index.html index 2d8a3de7..2804682f 100644 --- a/en/get-to-know-macedonia/index.html +++ b/en/get-to-know-macedonia/index.html @@ -59,7 +59,7 @@ - + @@ -374,8 +374,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 7cdd0e95..93ab46ec 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 @@ -61,7 +61,7 @@ - + @@ -407,8 +407,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 81f58e41..02ff1ef2 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 @@ -61,7 +61,7 @@ - + @@ -399,8 +399,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 b65c71a7..29191483 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 @@ -61,7 +61,7 @@ - + @@ -389,8 +389,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 dccbd62c..586cd525 100644 --- a/en/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/en/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -61,7 +61,7 @@ - + @@ -386,8 +386,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 6eda5595..3c669ded 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 @@ -61,7 +61,7 @@ - + @@ -391,8 +391,8 @@ - - - + + + diff --git a/en/get-to-know-slovenia/index.html b/en/get-to-know-slovenia/index.html index 05e594fd..c546611d 100644 --- a/en/get-to-know-slovenia/index.html +++ b/en/get-to-know-slovenia/index.html @@ -59,7 +59,7 @@ - + @@ -374,8 +374,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 e4c46fc4..31883bae 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 @@ -61,7 +61,7 @@ - + @@ -387,8 +387,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 81f45616..dc9954ab 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 @@ -61,7 +61,7 @@ - + @@ -381,8 +381,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 2fd29393..d83a7a6c 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 @@ -61,7 +61,7 @@ - + @@ -408,8 +408,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 6c649220..0cf3a92b 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 @@ -61,7 +61,7 @@ - + @@ -393,8 +393,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 9a0c4a63..2178141b 100644 --- a/en/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/en/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -61,7 +61,7 @@ - + @@ -364,8 +364,8 @@ - - - + + + diff --git a/en/index.html b/en/index.html index 69f12a2d..769543c2 100644 --- a/en/index.html +++ b/en/index.html @@ -59,7 +59,7 @@ - + @@ -554,8 +554,8 @@ - - - + + + \ No newline at end of file diff --git a/en/legal/index.html b/en/legal/index.html index f9cce4f2..75ab4081 100644 --- a/en/legal/index.html +++ b/en/legal/index.html @@ -57,7 +57,7 @@ - + @@ -319,8 +319,8 @@ - - - + + + diff --git a/en/msos-hub/index.html b/en/msos-hub/index.html index 56772525..8b9e000f 100644 --- a/en/msos-hub/index.html +++ b/en/msos-hub/index.html @@ -57,7 +57,7 @@ - + @@ -414,8 +414,8 @@ - - - + + + diff --git a/en/news/index.html b/en/news/index.html index 87cda9b7..f81cc8e5 100644 --- a/en/news/index.html +++ b/en/news/index.html @@ -59,7 +59,7 @@ - + @@ -578,11 +578,11 @@ - - - + + + - - + + diff --git a/en/news/meet-student-slovenia-2026/index.html b/en/news/meet-student-slovenia-2026/index.html index 1b76f814..c303ffe8 100644 --- a/en/news/meet-student-slovenia-2026/index.html +++ b/en/news/meet-student-slovenia-2026/index.html @@ -61,7 +61,7 @@ - + @@ -431,10 +431,10 @@ - - + + - - + + diff --git a/en/news/proof-of-means-updated-2026/index.html b/en/news/proof-of-means-updated-2026/index.html index 78bb002d..c0072177 100644 --- a/en/news/proof-of-means-updated-2026/index.html +++ b/en/news/proof-of-means-updated-2026/index.html @@ -61,7 +61,7 @@ - + @@ -304,9 +304,9 @@ - + - - + + diff --git a/en/press/index.html b/en/press/index.html index 71f7300a..52f4d2a3 100644 --- a/en/press/index.html +++ b/en/press/index.html @@ -56,7 +56,7 @@ - + @@ -461,7 +461,7 @@ - - + + diff --git a/en/privacy-policy/index.html b/en/privacy-policy/index.html index c0eb97a8..7de3a58b 100644 --- a/en/privacy-policy/index.html +++ b/en/privacy-policy/index.html @@ -59,7 +59,7 @@ - + @@ -370,8 +370,8 @@ - - - + + + diff --git a/en/projects/humanitarian-tournament-in-maribor/index.html b/en/projects/humanitarian-tournament-in-maribor/index.html index da643132..2b397405 100644 --- a/en/projects/humanitarian-tournament-in-maribor/index.html +++ b/en/projects/humanitarian-tournament-in-maribor/index.html @@ -62,7 +62,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/en/projects/in-memory-of-frosina-kulakova/index.html b/en/projects/in-memory-of-frosina-kulakova/index.html index 3811683d..a64adb1a 100644 --- a/en/projects/in-memory-of-frosina-kulakova/index.html +++ b/en/projects/in-memory-of-frosina-kulakova/index.html @@ -62,7 +62,7 @@ - + @@ -343,8 +343,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 b8d2f567..028f0707 100644 --- a/en/projects/in-memory-of-the-kochani-victims/index.html +++ b/en/projects/in-memory-of-the-kochani-victims/index.html @@ -62,7 +62,7 @@ - + @@ -351,8 +351,8 @@ - - - + + + diff --git a/en/projects/index.html b/en/projects/index.html index b2ebe68a..7ad0138b 100644 --- a/en/projects/index.html +++ b/en/projects/index.html @@ -59,7 +59,7 @@ - + @@ -513,9 +513,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 cdc0dd58..aa5a43f3 100644 --- a/en/projects/joint-walk-path-around-the-wire/index.html +++ b/en/projects/joint-walk-path-around-the-wire/index.html @@ -62,7 +62,7 @@ - + @@ -381,8 +381,8 @@ - - - + + + diff --git a/en/projects/kafanska-vecher-2025/index.html b/en/projects/kafanska-vecher-2025/index.html index 3150799c..c3ce260b 100644 --- a/en/projects/kafanska-vecher-2025/index.html +++ b/en/projects/kafanska-vecher-2025/index.html @@ -62,7 +62,7 @@ - + @@ -407,8 +407,8 @@ - - - + + + diff --git a/en/projects/macedonian-student-night-in-ljubljana/index.html b/en/projects/macedonian-student-night-in-ljubljana/index.html index c731a340..a1ab7543 100644 --- a/en/projects/macedonian-student-night-in-ljubljana/index.html +++ b/en/projects/macedonian-student-night-in-ljubljana/index.html @@ -62,7 +62,7 @@ - + @@ -421,8 +421,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 f025c5bb..53d32017 100644 --- a/en/projects/meet-student-slovenia-2023/index.html +++ b/en/projects/meet-student-slovenia-2023/index.html @@ -62,7 +62,7 @@ - + @@ -446,8 +446,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 e798f699..13a6a990 100644 --- a/en/projects/meet-student-slovenia-2024/index.html +++ b/en/projects/meet-student-slovenia-2024/index.html @@ -62,7 +62,7 @@ - + @@ -445,8 +445,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 c13e08eb..0e4d5b31 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 @@ -62,7 +62,7 @@ - + @@ -401,8 +401,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 0ae2602a..db3980b6 100644 --- a/en/projects/morning-coffee-in-front-of-ctk/index.html +++ b/en/projects/morning-coffee-in-front-of-ctk/index.html @@ -62,7 +62,7 @@ - + @@ -410,8 +410,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 a0c0b4f8..79947f9d 100644 --- a/en/projects/paint-and-wine-at-sunset/index.html +++ b/en/projects/paint-and-wine-at-sunset/index.html @@ -62,7 +62,7 @@ - + @@ -390,8 +390,8 @@ - - - + + + diff --git a/en/projects/president-siljanovska-davkova-lecture-2026/index.html b/en/projects/president-siljanovska-davkova-lecture-2026/index.html index 9d0ac323..e78d639e 100644 --- a/en/projects/president-siljanovska-davkova-lecture-2026/index.html +++ b/en/projects/president-siljanovska-davkova-lecture-2026/index.html @@ -62,7 +62,7 @@ - + @@ -404,8 +404,8 @@ - - - + + + diff --git a/en/projects/sepa-webinar-2026/index.html b/en/projects/sepa-webinar-2026/index.html index f30a0234..0ba6afdb 100644 --- a/en/projects/sepa-webinar-2026/index.html +++ b/en/projects/sepa-webinar-2026/index.html @@ -62,7 +62,7 @@ - + @@ -377,8 +377,8 @@ - - - + + + diff --git a/en/projects/teambuilding-hub-opening-2026/index.html b/en/projects/teambuilding-hub-opening-2026/index.html index a2bb18b2..bd577cf3 100644 --- a/en/projects/teambuilding-hub-opening-2026/index.html +++ b/en/projects/teambuilding-hub-opening-2026/index.html @@ -62,7 +62,7 @@ - + @@ -414,8 +414,8 @@ - - - + + + diff --git a/en/projects/watching-handball-together-in-slovenia/index.html b/en/projects/watching-handball-together-in-slovenia/index.html index 19240c43..d08291ad 100644 --- a/en/projects/watching-handball-together-in-slovenia/index.html +++ b/en/projects/watching-handball-together-in-slovenia/index.html @@ -62,7 +62,7 @@ - + @@ -381,8 +381,8 @@ - - - + + + diff --git a/en/projects/watching-macedonia-wales-football-match/index.html b/en/projects/watching-macedonia-wales-football-match/index.html index b7ece057..5948dedb 100644 --- a/en/projects/watching-macedonia-wales-football-match/index.html +++ b/en/projects/watching-macedonia-wales-football-match/index.html @@ -62,7 +62,7 @@ - + @@ -390,8 +390,8 @@ - - - + + + diff --git a/en/student-welcome-guide/academic-life/index.html b/en/student-welcome-guide/academic-life/index.html index 8d23cc0b..75dac436 100644 --- a/en/student-welcome-guide/academic-life/index.html +++ b/en/student-welcome-guide/academic-life/index.html @@ -61,7 +61,7 @@ - + @@ -368,9 +368,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/administrative-basics/index.html b/en/student-welcome-guide/administrative-basics/index.html index b77262ba..93d91cfb 100644 --- a/en/student-welcome-guide/administrative-basics/index.html +++ b/en/student-welcome-guide/administrative-basics/index.html @@ -61,7 +61,7 @@ - + @@ -356,9 +356,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/admission-and-enrolment/index.html b/en/student-welcome-guide/admission-and-enrolment/index.html index 9e785610..0a21288c 100644 --- a/en/student-welcome-guide/admission-and-enrolment/index.html +++ b/en/student-welcome-guide/admission-and-enrolment/index.html @@ -61,7 +61,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/application-deadlines/index.html b/en/student-welcome-guide/application-deadlines/index.html index 9bb382b4..fc6565fe 100644 --- a/en/student-welcome-guide/application-deadlines/index.html +++ b/en/student-welcome-guide/application-deadlines/index.html @@ -61,7 +61,7 @@ - + @@ -363,9 +363,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/arrival-checklist/index.html b/en/student-welcome-guide/arrival-checklist/index.html index b5282960..2aad5403 100644 --- a/en/student-welcome-guide/arrival-checklist/index.html +++ b/en/student-welcome-guide/arrival-checklist/index.html @@ -61,7 +61,7 @@ - + @@ -381,9 +381,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/bachelor-application/index.html b/en/student-welcome-guide/bachelor-application/index.html index d871574e..42d00fd2 100644 --- a/en/student-welcome-guide/bachelor-application/index.html +++ b/en/student-welcome-guide/bachelor-application/index.html @@ -61,7 +61,7 @@ - + @@ -393,9 +393,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/choose-a-programme/index.html b/en/student-welcome-guide/choose-a-programme/index.html index 4f133b0a..6ddeb3b7 100644 --- a/en/student-welcome-guide/choose-a-programme/index.html +++ b/en/student-welcome-guide/choose-a-programme/index.html @@ -61,7 +61,7 @@ - + @@ -384,9 +384,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/complete-student-journey/index.html b/en/student-welcome-guide/complete-student-journey/index.html index 20483272..31a0382c 100644 --- a/en/student-welcome-guide/complete-student-journey/index.html +++ b/en/student-welcome-guide/complete-student-journey/index.html @@ -61,7 +61,7 @@ - + @@ -409,9 +409,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/document-preparation/index.html b/en/student-welcome-guide/document-preparation/index.html index a846c53a..98c8cfb3 100644 --- a/en/student-welcome-guide/document-preparation/index.html +++ b/en/student-welcome-guide/document-preparation/index.html @@ -61,7 +61,7 @@ - + @@ -358,9 +358,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/evs-application-guide/index.html b/en/student-welcome-guide/evs-application-guide/index.html index 183cd639..58508654 100644 --- a/en/student-welcome-guide/evs-application-guide/index.html +++ b/en/student-welcome-guide/evs-application-guide/index.html @@ -61,7 +61,7 @@ - + @@ -376,9 +376,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/healthcare-in-slovenia/index.html b/en/student-welcome-guide/healthcare-in-slovenia/index.html index d0f8875b..6f96aa08 100644 --- a/en/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/en/student-welcome-guide/healthcare-in-slovenia/index.html @@ -61,7 +61,7 @@ - + @@ -419,9 +419,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/index.html b/en/student-welcome-guide/index.html index 66e4188d..efeb692a 100644 --- a/en/student-welcome-guide/index.html +++ b/en/student-welcome-guide/index.html @@ -59,7 +59,7 @@ - + @@ -527,10 +527,10 @@ - - - - - + + + + + diff --git a/en/student-welcome-guide/master-application/index.html b/en/student-welcome-guide/master-application/index.html index 79f0355b..87f64d83 100644 --- a/en/student-welcome-guide/master-application/index.html +++ b/en/student-welcome-guide/master-application/index.html @@ -61,7 +61,7 @@ - + @@ -370,9 +370,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/means-accommodation-address/index.html b/en/student-welcome-guide/means-accommodation-address/index.html index 74d4b352..c0f6f556 100644 --- a/en/student-welcome-guide/means-accommodation-address/index.html +++ b/en/student-welcome-guide/means-accommodation-address/index.html @@ -61,7 +61,7 @@ - + @@ -442,9 +442,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/my-route/index.html b/en/student-welcome-guide/my-route/index.html index 1bba1793..5ae9bb8b 100644 --- a/en/student-welcome-guide/my-route/index.html +++ b/en/student-welcome-guide/my-route/index.html @@ -61,7 +61,7 @@ - +

Your personal study route

@@ -270,9 +270,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 542dfb0d..98beaa1c 100644 --- a/en/student-welcome-guide/official-sources-and-checklists/index.html +++ b/en/student-welcome-guide/official-sources-and-checklists/index.html @@ -61,7 +61,7 @@ - + @@ -387,9 +387,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/prepare-to-move/index.html b/en/student-welcome-guide/prepare-to-move/index.html index a3ca5e71..bdec432a 100644 --- a/en/student-welcome-guide/prepare-to-move/index.html +++ b/en/student-welcome-guide/prepare-to-move/index.html @@ -61,7 +61,7 @@ - + @@ -414,9 +414,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/recognition-of-education/index.html b/en/student-welcome-guide/recognition-of-education/index.html index ad8625ed..fc039643 100644 --- a/en/student-welcome-guide/recognition-of-education/index.html +++ b/en/student-welcome-guide/recognition-of-education/index.html @@ -61,7 +61,7 @@ - + @@ -359,9 +359,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/renew-change-graduate/index.html b/en/student-welcome-guide/renew-change-graduate/index.html index ad69d87b..ba92f97c 100644 --- a/en/student-welcome-guide/renew-change-graduate/index.html +++ b/en/student-welcome-guide/renew-change-graduate/index.html @@ -61,7 +61,7 @@ - + @@ -368,9 +368,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 71d39d94..4ad28535 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 @@ -61,7 +61,7 @@ - + @@ -408,9 +408,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-accommodation/index.html b/en/student-welcome-guide/student-accommodation/index.html index 68796fbc..7515b5e7 100644 --- a/en/student-welcome-guide/student-accommodation/index.html +++ b/en/student-welcome-guide/student-accommodation/index.html @@ -61,7 +61,7 @@ - + @@ -409,9 +409,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-budget/index.html b/en/student-welcome-guide/student-budget/index.html index 3b4cd0d0..23c2de08 100644 --- a/en/student-welcome-guide/student-budget/index.html +++ b/en/student-welcome-guide/student-budget/index.html @@ -61,7 +61,7 @@ - + @@ -378,9 +378,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-meals/index.html b/en/student-welcome-guide/student-meals/index.html index 29357539..f7575930 100644 --- a/en/student-welcome-guide/student-meals/index.html +++ b/en/student-welcome-guide/student-meals/index.html @@ -61,7 +61,7 @@ - + @@ -366,9 +366,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 3e0c5b08..98a21425 100644 --- a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -61,7 +61,7 @@ - + @@ -403,9 +403,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-residence-permit/index.html b/en/student-welcome-guide/student-residence-permit/index.html index 01aeb1ae..d30285d7 100644 --- a/en/student-welcome-guide/student-residence-permit/index.html +++ b/en/student-welcome-guide/student-residence-permit/index.html @@ -61,7 +61,7 @@ - + @@ -420,9 +420,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-transport/index.html b/en/student-welcome-guide/student-transport/index.html index 51223df8..57460841 100644 --- a/en/student-welcome-guide/student-transport/index.html +++ b/en/student-welcome-guide/student-transport/index.html @@ -61,7 +61,7 @@ - + @@ -387,9 +387,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-work/index.html b/en/student-welcome-guide/student-work/index.html index 03a60c51..9e2f66bb 100644 --- a/en/student-welcome-guide/student-work/index.html +++ b/en/student-welcome-guide/student-work/index.html @@ -61,7 +61,7 @@ - + @@ -361,9 +361,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/study-cities/index.html b/en/student-welcome-guide/study-cities/index.html index 1f361d70..a1632af0 100644 --- a/en/student-welcome-guide/study-cities/index.html +++ b/en/student-welcome-guide/study-cities/index.html @@ -61,7 +61,7 @@ - + @@ -421,9 +421,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/tuition-and-scholarships/index.html b/en/student-welcome-guide/tuition-and-scholarships/index.html index 17ae3190..7cbae1e1 100644 --- a/en/student-welcome-guide/tuition-and-scholarships/index.html +++ b/en/student-welcome-guide/tuition-and-scholarships/index.html @@ -61,7 +61,7 @@ - + @@ -365,9 +365,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 6849b314..12e84aa9 100644 --- a/en/student-welcome-guide/visa-and-residence-explained/index.html +++ b/en/student-welcome-guide/visa-and-residence-explained/index.html @@ -61,7 +61,7 @@ - + @@ -392,9 +392,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/wellbeing-and-community/index.html b/en/student-welcome-guide/wellbeing-and-community/index.html index d487bd65..93592895 100644 --- a/en/student-welcome-guide/wellbeing-and-community/index.html +++ b/en/student-welcome-guide/wellbeing-and-community/index.html @@ -61,7 +61,7 @@ - + @@ -357,9 +357,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 a59de1d3..835ea3c6 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 @@ -61,7 +61,7 @@ - + @@ -427,9 +427,9 @@ - - - - + + + + diff --git a/en/support/index.html b/en/support/index.html index 5228168a..637ee2cc 100644 --- a/en/support/index.html +++ b/en/support/index.html @@ -57,7 +57,7 @@ - + @@ -598,9 +598,9 @@ - - - - + + + + diff --git a/en/timeline-and-milestones/index.html b/en/timeline-and-milestones/index.html index 71b9cd51..ecba8bfd 100644 --- a/en/timeline-and-milestones/index.html +++ b/en/timeline-and-milestones/index.html @@ -59,7 +59,7 @@ - + @@ -513,8 +513,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/about-us/index.html b/mk/about-us/index.html index af29e078..fc3d8a6c 100644 --- a/mk/about-us/index.html +++ b/mk/about-us/index.html @@ -59,7 +59,7 @@ - + @@ -574,8 +574,8 @@ - - - + + + diff --git a/mk/become-a-member/index.html b/mk/become-a-member/index.html index c953539f..544a73d5 100644 --- a/mk/become-a-member/index.html +++ b/mk/become-a-member/index.html @@ -59,7 +59,7 @@ - + @@ -626,10 +626,10 @@ - - + + - - + + diff --git a/mk/blog/ad-futura-scholarship-slovenia-2026/index.html b/mk/blog/ad-futura-scholarship-slovenia-2026/index.html index 7080048e..830a7c97 100644 --- a/mk/blog/ad-futura-scholarship-slovenia-2026/index.html +++ b/mk/blog/ad-futura-scholarship-slovenia-2026/index.html @@ -61,7 +61,7 @@ - + @@ -446,9 +446,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 455d7643..059481bc 100644 --- a/mk/blog/how-i-coped-with-leaving-home/index.html +++ b/mk/blog/how-i-coped-with-leaving-home/index.html @@ -61,7 +61,7 @@ - + @@ -350,9 +350,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 9e536d73..7184f360 100644 --- a/mk/blog/how-to-open-slovenian-bank-account/index.html +++ b/mk/blog/how-to-open-slovenian-bank-account/index.html @@ -61,7 +61,7 @@ - + @@ -424,9 +424,9 @@ - + - - + + diff --git a/mk/blog/index.html b/mk/blog/index.html index bd63e0c0..cc60eb62 100644 --- a/mk/blog/index.html +++ b/mk/blog/index.html @@ -59,7 +59,7 @@ - + @@ -436,11 +436,11 @@ - + - - - - + + + + diff --git a/mk/blog/learning-slovene-where-to-start/index.html b/mk/blog/learning-slovene-where-to-start/index.html index 25f2baae..45df1e94 100644 --- a/mk/blog/learning-slovene-where-to-start/index.html +++ b/mk/blog/learning-slovene-where-to-start/index.html @@ -61,7 +61,7 @@ - + @@ -383,9 +383,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 c6de319e..8f4798cf 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 @@ -61,7 +61,7 @@ - + @@ -395,9 +395,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 9725ddd3..2618b5c0 100644 --- a/mk/blog/welcome-days-slovenian-universities-2026-2027/index.html +++ b/mk/blog/welcome-days-slovenian-universities-2026-2027/index.html @@ -61,7 +61,7 @@ - + @@ -386,9 +386,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 fe2e20f3..10a3fd3b 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 @@ -61,7 +61,7 @@ - + @@ -433,9 +433,9 @@ - + - - + + diff --git a/mk/cookie-policy/index.html b/mk/cookie-policy/index.html index 02dd35d0..f451ff72 100644 --- a/mk/cookie-policy/index.html +++ b/mk/cookie-policy/index.html @@ -59,7 +59,7 @@ - + @@ -324,8 +324,8 @@ - - - + + + diff --git a/mk/faq/index.html b/mk/faq/index.html index 48a1ac9d..99887e14 100644 --- a/mk/faq/index.html +++ b/mk/faq/index.html @@ -60,7 +60,7 @@ - + @@ -541,7 +541,7 @@ - - + + diff --git a/mk/gallery/index.html b/mk/gallery/index.html index 5741b3b8..5e34782d 100644 --- a/mk/gallery/index.html +++ b/mk/gallery/index.html @@ -59,7 +59,7 @@ - + @@ -650,8 +650,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 5d6a25c5..6fb28f07 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 @@ -61,7 +61,7 @@ - + @@ -401,8 +401,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 71779a9d..65eafc06 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 @@ -61,7 +61,7 @@ - + @@ -407,8 +407,8 @@ - - - + + + diff --git a/mk/get-to-know-macedonia/index.html b/mk/get-to-know-macedonia/index.html index b1983571..bd08c539 100644 --- a/mk/get-to-know-macedonia/index.html +++ b/mk/get-to-know-macedonia/index.html @@ -59,7 +59,7 @@ - + @@ -374,8 +374,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 a94eaeba..28d06879 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 @@ -61,7 +61,7 @@ - + @@ -407,8 +407,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 1f7d4ae6..7bd07c82 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 @@ -61,7 +61,7 @@ - + @@ -399,8 +399,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 d5dfd993..13f1b0ee 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 @@ -61,7 +61,7 @@ - + @@ -389,8 +389,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 83390301..3f394613 100644 --- a/mk/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/mk/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -61,7 +61,7 @@ - + @@ -386,8 +386,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 e58fd422..edebbcba 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 @@ -61,7 +61,7 @@ - + @@ -391,8 +391,8 @@ - - - + + + diff --git a/mk/get-to-know-slovenia/index.html b/mk/get-to-know-slovenia/index.html index c1b442af..81aa42d4 100644 --- a/mk/get-to-know-slovenia/index.html +++ b/mk/get-to-know-slovenia/index.html @@ -59,7 +59,7 @@ - + @@ -373,8 +373,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 09aa53ba..c0e39322 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 @@ -61,7 +61,7 @@ - + @@ -387,8 +387,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 23ec8b5e..ba17b492 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 @@ -61,7 +61,7 @@ - + @@ -377,8 +377,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 0fa639af..5446a096 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 @@ -61,7 +61,7 @@ - + @@ -408,8 +408,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 ddd15382..98f2c28c 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 @@ -61,7 +61,7 @@ - + @@ -393,8 +393,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 d4b40d46..29c00143 100644 --- a/mk/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/mk/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -61,7 +61,7 @@ - + @@ -364,8 +364,8 @@ - - - + + + diff --git a/mk/index.html b/mk/index.html index e68f8a11..1d3498e1 100644 --- a/mk/index.html +++ b/mk/index.html @@ -59,7 +59,7 @@ - + @@ -557,8 +557,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/legal/index.html b/mk/legal/index.html index 8959ec33..1c1adb54 100644 --- a/mk/legal/index.html +++ b/mk/legal/index.html @@ -57,7 +57,7 @@ - + @@ -319,8 +319,8 @@ - - - + + + diff --git a/mk/msos-hub/index.html b/mk/msos-hub/index.html index 29a3b85f..2e6ef623 100644 --- a/mk/msos-hub/index.html +++ b/mk/msos-hub/index.html @@ -57,7 +57,7 @@ - + @@ -414,8 +414,8 @@ - - - + + + diff --git a/mk/news/index.html b/mk/news/index.html index 3b0a16fc..52900d2b 100644 --- a/mk/news/index.html +++ b/mk/news/index.html @@ -59,7 +59,7 @@ - + @@ -578,11 +578,11 @@ - - - + + + - - + + diff --git a/mk/news/meet-student-slovenia-2026/index.html b/mk/news/meet-student-slovenia-2026/index.html index 8e7b074f..577c4520 100644 --- a/mk/news/meet-student-slovenia-2026/index.html +++ b/mk/news/meet-student-slovenia-2026/index.html @@ -61,7 +61,7 @@ - + @@ -433,10 +433,10 @@ - - + + - - + + diff --git a/mk/news/proof-of-means-updated-2026/index.html b/mk/news/proof-of-means-updated-2026/index.html index 8d645f2a..f23fb5f5 100644 --- a/mk/news/proof-of-means-updated-2026/index.html +++ b/mk/news/proof-of-means-updated-2026/index.html @@ -61,7 +61,7 @@ - + @@ -304,9 +304,9 @@ - + - - + + diff --git a/mk/press/index.html b/mk/press/index.html index f7d2f876..d88fb34d 100644 --- a/mk/press/index.html +++ b/mk/press/index.html @@ -56,7 +56,7 @@ - + @@ -461,7 +461,7 @@ - - + + diff --git a/mk/privacy-policy/index.html b/mk/privacy-policy/index.html index 1bcf5eb9..452a5b10 100644 --- a/mk/privacy-policy/index.html +++ b/mk/privacy-policy/index.html @@ -59,7 +59,7 @@ - + @@ -370,8 +370,8 @@ - - - + + + diff --git a/mk/projects/humanitarian-tournament-in-maribor/index.html b/mk/projects/humanitarian-tournament-in-maribor/index.html index cf4add51..9adecbfd 100644 --- a/mk/projects/humanitarian-tournament-in-maribor/index.html +++ b/mk/projects/humanitarian-tournament-in-maribor/index.html @@ -62,7 +62,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/mk/projects/in-memory-of-frosina-kulakova/index.html b/mk/projects/in-memory-of-frosina-kulakova/index.html index b63408a6..6260447a 100644 --- a/mk/projects/in-memory-of-frosina-kulakova/index.html +++ b/mk/projects/in-memory-of-frosina-kulakova/index.html @@ -62,7 +62,7 @@ - + @@ -343,8 +343,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 a36b49a8..420359dc 100644 --- a/mk/projects/in-memory-of-the-kochani-victims/index.html +++ b/mk/projects/in-memory-of-the-kochani-victims/index.html @@ -62,7 +62,7 @@ - + @@ -351,8 +351,8 @@ - - - + + + diff --git a/mk/projects/index.html b/mk/projects/index.html index e5c3169c..604d8283 100644 --- a/mk/projects/index.html +++ b/mk/projects/index.html @@ -59,7 +59,7 @@ - + @@ -515,9 +515,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 45147f3c..ef8a93a2 100644 --- a/mk/projects/joint-walk-path-around-the-wire/index.html +++ b/mk/projects/joint-walk-path-around-the-wire/index.html @@ -62,7 +62,7 @@ - + @@ -381,8 +381,8 @@ - - - + + + diff --git a/mk/projects/kafanska-vecher-2025/index.html b/mk/projects/kafanska-vecher-2025/index.html index a58d2fe4..660b4fe7 100644 --- a/mk/projects/kafanska-vecher-2025/index.html +++ b/mk/projects/kafanska-vecher-2025/index.html @@ -62,7 +62,7 @@ - + @@ -407,8 +407,8 @@ - - - + + + diff --git a/mk/projects/macedonian-student-night-in-ljubljana/index.html b/mk/projects/macedonian-student-night-in-ljubljana/index.html index a0ea89e1..86003e52 100644 --- a/mk/projects/macedonian-student-night-in-ljubljana/index.html +++ b/mk/projects/macedonian-student-night-in-ljubljana/index.html @@ -62,7 +62,7 @@ - + @@ -416,8 +416,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 4df7ce47..2690a04b 100644 --- a/mk/projects/meet-student-slovenia-2023/index.html +++ b/mk/projects/meet-student-slovenia-2023/index.html @@ -62,7 +62,7 @@ - + @@ -441,8 +441,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 b750d9c0..021690b1 100644 --- a/mk/projects/meet-student-slovenia-2024/index.html +++ b/mk/projects/meet-student-slovenia-2024/index.html @@ -62,7 +62,7 @@ - + @@ -440,8 +440,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 8f76ac10..d01097cb 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 @@ -62,7 +62,7 @@ - + @@ -401,8 +401,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 26043d49..3a632ab0 100644 --- a/mk/projects/morning-coffee-in-front-of-ctk/index.html +++ b/mk/projects/morning-coffee-in-front-of-ctk/index.html @@ -62,7 +62,7 @@ - + @@ -403,8 +403,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 e392b9b3..93fa062f 100644 --- a/mk/projects/paint-and-wine-at-sunset/index.html +++ b/mk/projects/paint-and-wine-at-sunset/index.html @@ -62,7 +62,7 @@ - + @@ -390,8 +390,8 @@ - - - + + + diff --git a/mk/projects/president-siljanovska-davkova-lecture-2026/index.html b/mk/projects/president-siljanovska-davkova-lecture-2026/index.html index 03601c65..26a41b1d 100644 --- a/mk/projects/president-siljanovska-davkova-lecture-2026/index.html +++ b/mk/projects/president-siljanovska-davkova-lecture-2026/index.html @@ -62,7 +62,7 @@ - + @@ -404,8 +404,8 @@ - - - + + + diff --git a/mk/projects/sepa-webinar-2026/index.html b/mk/projects/sepa-webinar-2026/index.html index 3985775a..8238ac33 100644 --- a/mk/projects/sepa-webinar-2026/index.html +++ b/mk/projects/sepa-webinar-2026/index.html @@ -62,7 +62,7 @@ - + @@ -377,8 +377,8 @@ - - - + + + diff --git a/mk/projects/teambuilding-hub-opening-2026/index.html b/mk/projects/teambuilding-hub-opening-2026/index.html index bd8a0fd9..341d6478 100644 --- a/mk/projects/teambuilding-hub-opening-2026/index.html +++ b/mk/projects/teambuilding-hub-opening-2026/index.html @@ -62,7 +62,7 @@ - + @@ -414,8 +414,8 @@ - - - + + + diff --git a/mk/projects/watching-handball-together-in-slovenia/index.html b/mk/projects/watching-handball-together-in-slovenia/index.html index 8ae2a9eb..f3aa4d1d 100644 --- a/mk/projects/watching-handball-together-in-slovenia/index.html +++ b/mk/projects/watching-handball-together-in-slovenia/index.html @@ -62,7 +62,7 @@ - + @@ -381,8 +381,8 @@ - - - + + + diff --git a/mk/projects/watching-macedonia-wales-football-match/index.html b/mk/projects/watching-macedonia-wales-football-match/index.html index 83a7665d..04a24dc8 100644 --- a/mk/projects/watching-macedonia-wales-football-match/index.html +++ b/mk/projects/watching-macedonia-wales-football-match/index.html @@ -62,7 +62,7 @@ - + @@ -390,8 +390,8 @@ - - - + + + diff --git a/mk/student-welcome-guide/academic-life/index.html b/mk/student-welcome-guide/academic-life/index.html index afe78117..bcf1e3f1 100644 --- a/mk/student-welcome-guide/academic-life/index.html +++ b/mk/student-welcome-guide/academic-life/index.html @@ -61,7 +61,7 @@ - + @@ -368,9 +368,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/administrative-basics/index.html b/mk/student-welcome-guide/administrative-basics/index.html index 083b5b47..41e60d58 100644 --- a/mk/student-welcome-guide/administrative-basics/index.html +++ b/mk/student-welcome-guide/administrative-basics/index.html @@ -61,7 +61,7 @@ - + @@ -356,9 +356,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/admission-and-enrolment/index.html b/mk/student-welcome-guide/admission-and-enrolment/index.html index 042fc93a..fe565423 100644 --- a/mk/student-welcome-guide/admission-and-enrolment/index.html +++ b/mk/student-welcome-guide/admission-and-enrolment/index.html @@ -61,7 +61,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/application-deadlines/index.html b/mk/student-welcome-guide/application-deadlines/index.html index b9569905..b32f5889 100644 --- a/mk/student-welcome-guide/application-deadlines/index.html +++ b/mk/student-welcome-guide/application-deadlines/index.html @@ -61,7 +61,7 @@ - + @@ -363,9 +363,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/arrival-checklist/index.html b/mk/student-welcome-guide/arrival-checklist/index.html index 5c974b2b..6926b892 100644 --- a/mk/student-welcome-guide/arrival-checklist/index.html +++ b/mk/student-welcome-guide/arrival-checklist/index.html @@ -61,7 +61,7 @@ - + @@ -381,9 +381,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/bachelor-application/index.html b/mk/student-welcome-guide/bachelor-application/index.html index 02dce586..12a52d3b 100644 --- a/mk/student-welcome-guide/bachelor-application/index.html +++ b/mk/student-welcome-guide/bachelor-application/index.html @@ -61,7 +61,7 @@ - + @@ -393,9 +393,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/choose-a-programme/index.html b/mk/student-welcome-guide/choose-a-programme/index.html index 3ddc9c5e..7e152563 100644 --- a/mk/student-welcome-guide/choose-a-programme/index.html +++ b/mk/student-welcome-guide/choose-a-programme/index.html @@ -61,7 +61,7 @@ - + @@ -384,9 +384,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/complete-student-journey/index.html b/mk/student-welcome-guide/complete-student-journey/index.html index c4d13cb3..a8889fa9 100644 --- a/mk/student-welcome-guide/complete-student-journey/index.html +++ b/mk/student-welcome-guide/complete-student-journey/index.html @@ -61,7 +61,7 @@ - + @@ -409,9 +409,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/document-preparation/index.html b/mk/student-welcome-guide/document-preparation/index.html index aab958c7..f2b41520 100644 --- a/mk/student-welcome-guide/document-preparation/index.html +++ b/mk/student-welcome-guide/document-preparation/index.html @@ -61,7 +61,7 @@ - + @@ -358,9 +358,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/evs-application-guide/index.html b/mk/student-welcome-guide/evs-application-guide/index.html index f9526b0c..3dcc0195 100644 --- a/mk/student-welcome-guide/evs-application-guide/index.html +++ b/mk/student-welcome-guide/evs-application-guide/index.html @@ -61,7 +61,7 @@ - + @@ -376,9 +376,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/healthcare-in-slovenia/index.html b/mk/student-welcome-guide/healthcare-in-slovenia/index.html index 395a3642..24638818 100644 --- a/mk/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/mk/student-welcome-guide/healthcare-in-slovenia/index.html @@ -61,7 +61,7 @@ - + @@ -419,9 +419,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/index.html b/mk/student-welcome-guide/index.html index 18894f7b..930de910 100644 --- a/mk/student-welcome-guide/index.html +++ b/mk/student-welcome-guide/index.html @@ -59,7 +59,7 @@ - + @@ -527,10 +527,10 @@ - - - - - + + + + + diff --git a/mk/student-welcome-guide/master-application/index.html b/mk/student-welcome-guide/master-application/index.html index e60c1ea5..3e9fe582 100644 --- a/mk/student-welcome-guide/master-application/index.html +++ b/mk/student-welcome-guide/master-application/index.html @@ -61,7 +61,7 @@ - + @@ -370,9 +370,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/means-accommodation-address/index.html b/mk/student-welcome-guide/means-accommodation-address/index.html index cf151a6f..738ec208 100644 --- a/mk/student-welcome-guide/means-accommodation-address/index.html +++ b/mk/student-welcome-guide/means-accommodation-address/index.html @@ -61,7 +61,7 @@ - + @@ -442,9 +442,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/my-route/index.html b/mk/student-welcome-guide/my-route/index.html index 9e6883f0..fe343de0 100644 --- a/mk/student-welcome-guide/my-route/index.html +++ b/mk/student-welcome-guide/my-route/index.html @@ -61,7 +61,7 @@ - +

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

@@ -270,9 +270,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 ff2aedf8..43776716 100644 --- a/mk/student-welcome-guide/official-sources-and-checklists/index.html +++ b/mk/student-welcome-guide/official-sources-and-checklists/index.html @@ -61,7 +61,7 @@ - + @@ -387,9 +387,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/prepare-to-move/index.html b/mk/student-welcome-guide/prepare-to-move/index.html index f91b932f..12c92b15 100644 --- a/mk/student-welcome-guide/prepare-to-move/index.html +++ b/mk/student-welcome-guide/prepare-to-move/index.html @@ -61,7 +61,7 @@ - + @@ -414,9 +414,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/recognition-of-education/index.html b/mk/student-welcome-guide/recognition-of-education/index.html index 19f44960..420fa0d0 100644 --- a/mk/student-welcome-guide/recognition-of-education/index.html +++ b/mk/student-welcome-guide/recognition-of-education/index.html @@ -61,7 +61,7 @@ - + @@ -359,9 +359,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/renew-change-graduate/index.html b/mk/student-welcome-guide/renew-change-graduate/index.html index 5de0530a..29482f36 100644 --- a/mk/student-welcome-guide/renew-change-graduate/index.html +++ b/mk/student-welcome-guide/renew-change-graduate/index.html @@ -61,7 +61,7 @@ - + @@ -368,9 +368,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 0b7b041f..f506b2d8 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 @@ -61,7 +61,7 @@ - + @@ -408,9 +408,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-accommodation/index.html b/mk/student-welcome-guide/student-accommodation/index.html index 98cecfcd..55a13dc4 100644 --- a/mk/student-welcome-guide/student-accommodation/index.html +++ b/mk/student-welcome-guide/student-accommodation/index.html @@ -61,7 +61,7 @@ - + @@ -409,9 +409,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-budget/index.html b/mk/student-welcome-guide/student-budget/index.html index 28ccb454..6bfe0866 100644 --- a/mk/student-welcome-guide/student-budget/index.html +++ b/mk/student-welcome-guide/student-budget/index.html @@ -61,7 +61,7 @@ - + @@ -378,9 +378,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-meals/index.html b/mk/student-welcome-guide/student-meals/index.html index 3536263b..a5fea51b 100644 --- a/mk/student-welcome-guide/student-meals/index.html +++ b/mk/student-welcome-guide/student-meals/index.html @@ -61,7 +61,7 @@ - + @@ -366,9 +366,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 811c07ed..fd9b43fb 100644 --- a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -61,7 +61,7 @@ - + @@ -403,9 +403,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-residence-permit/index.html b/mk/student-welcome-guide/student-residence-permit/index.html index 759c1c46..c850845c 100644 --- a/mk/student-welcome-guide/student-residence-permit/index.html +++ b/mk/student-welcome-guide/student-residence-permit/index.html @@ -61,7 +61,7 @@ - + @@ -420,9 +420,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-transport/index.html b/mk/student-welcome-guide/student-transport/index.html index 837ed998..618a55a8 100644 --- a/mk/student-welcome-guide/student-transport/index.html +++ b/mk/student-welcome-guide/student-transport/index.html @@ -61,7 +61,7 @@ - + @@ -387,9 +387,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-work/index.html b/mk/student-welcome-guide/student-work/index.html index 9fe5f3b6..cb5d09d7 100644 --- a/mk/student-welcome-guide/student-work/index.html +++ b/mk/student-welcome-guide/student-work/index.html @@ -61,7 +61,7 @@ - + @@ -361,9 +361,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/study-cities/index.html b/mk/student-welcome-guide/study-cities/index.html index 90f36278..860dbe2d 100644 --- a/mk/student-welcome-guide/study-cities/index.html +++ b/mk/student-welcome-guide/study-cities/index.html @@ -61,7 +61,7 @@ - + @@ -421,9 +421,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/tuition-and-scholarships/index.html b/mk/student-welcome-guide/tuition-and-scholarships/index.html index cf7be3e2..a2b8b12c 100644 --- a/mk/student-welcome-guide/tuition-and-scholarships/index.html +++ b/mk/student-welcome-guide/tuition-and-scholarships/index.html @@ -61,7 +61,7 @@ - + @@ -365,9 +365,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 7b9e738c..e31d2ebb 100644 --- a/mk/student-welcome-guide/visa-and-residence-explained/index.html +++ b/mk/student-welcome-guide/visa-and-residence-explained/index.html @@ -61,7 +61,7 @@ - + @@ -392,9 +392,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/wellbeing-and-community/index.html b/mk/student-welcome-guide/wellbeing-and-community/index.html index c4d1ebaf..fadd2006 100644 --- a/mk/student-welcome-guide/wellbeing-and-community/index.html +++ b/mk/student-welcome-guide/wellbeing-and-community/index.html @@ -61,7 +61,7 @@ - + @@ -357,9 +357,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 88bbb082..77c870f5 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 @@ -61,7 +61,7 @@ - + @@ -427,9 +427,9 @@ - - - - + + + + diff --git a/mk/support/index.html b/mk/support/index.html index 5f2d564a..b02abd78 100644 --- a/mk/support/index.html +++ b/mk/support/index.html @@ -57,7 +57,7 @@ - + @@ -596,9 +596,9 @@ - - - - + + + + diff --git a/mk/timeline-and-milestones/index.html b/mk/timeline-and-milestones/index.html index 05f0e5b3..f8f6b97d 100644 --- a/mk/timeline-and-milestones/index.html +++ b/mk/timeline-and-milestones/index.html @@ -59,7 +59,7 @@ - + @@ -513,8 +513,8 @@ - - - + + + \ No newline at end of file diff --git a/si/about-us/index.html b/si/about-us/index.html index 6f05d442..5c561cc9 100644 --- a/si/about-us/index.html +++ b/si/about-us/index.html @@ -59,7 +59,7 @@ - + @@ -574,8 +574,8 @@ - - - + + + diff --git a/si/become-a-member/index.html b/si/become-a-member/index.html index d97f4929..70083031 100644 --- a/si/become-a-member/index.html +++ b/si/become-a-member/index.html @@ -59,7 +59,7 @@ - + @@ -626,10 +626,10 @@ - - + + - - + + diff --git a/si/blog/ad-futura-scholarship-slovenia-2026/index.html b/si/blog/ad-futura-scholarship-slovenia-2026/index.html index 7346baba..9a79ea40 100644 --- a/si/blog/ad-futura-scholarship-slovenia-2026/index.html +++ b/si/blog/ad-futura-scholarship-slovenia-2026/index.html @@ -61,7 +61,7 @@ - + @@ -446,9 +446,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 444b1fac..ba220c60 100644 --- a/si/blog/how-i-coped-with-leaving-home/index.html +++ b/si/blog/how-i-coped-with-leaving-home/index.html @@ -61,7 +61,7 @@ - + @@ -350,9 +350,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 8f8ce29c..92e8376f 100644 --- a/si/blog/how-to-open-slovenian-bank-account/index.html +++ b/si/blog/how-to-open-slovenian-bank-account/index.html @@ -61,7 +61,7 @@ - + @@ -424,9 +424,9 @@ - + - - + + diff --git a/si/blog/index.html b/si/blog/index.html index 548aa7cd..f812bf59 100644 --- a/si/blog/index.html +++ b/si/blog/index.html @@ -59,7 +59,7 @@ - + @@ -436,11 +436,11 @@ - + - - - - + + + + diff --git a/si/blog/learning-slovene-where-to-start/index.html b/si/blog/learning-slovene-where-to-start/index.html index f9703409..551baf78 100644 --- a/si/blog/learning-slovene-where-to-start/index.html +++ b/si/blog/learning-slovene-where-to-start/index.html @@ -61,7 +61,7 @@ - + @@ -383,9 +383,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 d600341b..bda104e6 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 @@ -61,7 +61,7 @@ - + @@ -395,9 +395,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 f5bd02b0..56e86d2d 100644 --- a/si/blog/welcome-days-slovenian-universities-2026-2027/index.html +++ b/si/blog/welcome-days-slovenian-universities-2026-2027/index.html @@ -61,7 +61,7 @@ - + @@ -386,9 +386,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 88a7a224..0b3fcd87 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 @@ -61,7 +61,7 @@ - + @@ -433,9 +433,9 @@ - + - - + + diff --git a/si/cookie-policy/index.html b/si/cookie-policy/index.html index 194ccae2..d378e739 100644 --- a/si/cookie-policy/index.html +++ b/si/cookie-policy/index.html @@ -59,7 +59,7 @@ - + @@ -324,8 +324,8 @@ - - - + + + diff --git a/si/faq/index.html b/si/faq/index.html index 03ee1fa1..e9798819 100644 --- a/si/faq/index.html +++ b/si/faq/index.html @@ -60,7 +60,7 @@ - + @@ -541,7 +541,7 @@ - - + + diff --git a/si/gallery/index.html b/si/gallery/index.html index 5e2e2e25..ec682423 100644 --- a/si/gallery/index.html +++ b/si/gallery/index.html @@ -59,7 +59,7 @@ - + @@ -650,8 +650,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 3b4fd617..2aef7a98 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 @@ -61,7 +61,7 @@ - + @@ -401,8 +401,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 e9fafbce..d15367ba 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 @@ -61,7 +61,7 @@ - + @@ -407,8 +407,8 @@ - - - + + + diff --git a/si/get-to-know-macedonia/index.html b/si/get-to-know-macedonia/index.html index 53e9de89..2499c40c 100644 --- a/si/get-to-know-macedonia/index.html +++ b/si/get-to-know-macedonia/index.html @@ -59,7 +59,7 @@ - + @@ -374,8 +374,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 c5884bdd..508c84e7 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 @@ -61,7 +61,7 @@ - + @@ -407,8 +407,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 5d9dfaac..639cdda8 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 @@ -61,7 +61,7 @@ - + @@ -399,8 +399,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 3af3014d..a5c727ca 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 @@ -61,7 +61,7 @@ - + @@ -389,8 +389,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 659b418d..6f51afd8 100644 --- a/si/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/si/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -61,7 +61,7 @@ - + @@ -386,8 +386,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 463b90ff..8cbf7956 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 @@ -61,7 +61,7 @@ - + @@ -391,8 +391,8 @@ - - - + + + diff --git a/si/get-to-know-slovenia/index.html b/si/get-to-know-slovenia/index.html index f3357345..085acddd 100644 --- a/si/get-to-know-slovenia/index.html +++ b/si/get-to-know-slovenia/index.html @@ -59,7 +59,7 @@ - + @@ -373,8 +373,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 ab341d98..cd2ad7fb 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 @@ -61,7 +61,7 @@ - + @@ -387,8 +387,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 70fb5406..b52d4626 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 @@ -61,7 +61,7 @@ - + @@ -381,8 +381,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 ddffe2a4..01c2313d 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 @@ -61,7 +61,7 @@ - + @@ -408,8 +408,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 6b7de1b7..0fab4448 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 @@ -61,7 +61,7 @@ - + @@ -393,8 +393,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 fcb02e42..6221b02a 100644 --- a/si/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/si/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -61,7 +61,7 @@ - + @@ -364,8 +364,8 @@ - - - + + + diff --git a/si/index.html b/si/index.html index 7447630c..9f952766 100644 --- a/si/index.html +++ b/si/index.html @@ -59,7 +59,7 @@ - + @@ -557,8 +557,8 @@ - - - + + + \ No newline at end of file diff --git a/si/legal/index.html b/si/legal/index.html index c6a57703..4436a847 100644 --- a/si/legal/index.html +++ b/si/legal/index.html @@ -57,7 +57,7 @@ - + @@ -319,8 +319,8 @@ - - - + + + diff --git a/si/msos-hub/index.html b/si/msos-hub/index.html index 8648d523..c448ec31 100644 --- a/si/msos-hub/index.html +++ b/si/msos-hub/index.html @@ -57,7 +57,7 @@ - + @@ -414,8 +414,8 @@ - - - + + + diff --git a/si/news/index.html b/si/news/index.html index 646368ce..5ef95e4e 100644 --- a/si/news/index.html +++ b/si/news/index.html @@ -59,7 +59,7 @@ - + @@ -578,11 +578,11 @@ - - - + + + - - + + diff --git a/si/news/meet-student-slovenia-2026/index.html b/si/news/meet-student-slovenia-2026/index.html index 44963aa7..622d67bf 100644 --- a/si/news/meet-student-slovenia-2026/index.html +++ b/si/news/meet-student-slovenia-2026/index.html @@ -61,7 +61,7 @@ - + @@ -433,10 +433,10 @@ - - + + - - + + diff --git a/si/news/proof-of-means-updated-2026/index.html b/si/news/proof-of-means-updated-2026/index.html index d0dbe6b7..47ecdb5a 100644 --- a/si/news/proof-of-means-updated-2026/index.html +++ b/si/news/proof-of-means-updated-2026/index.html @@ -61,7 +61,7 @@ - + @@ -304,9 +304,9 @@ - + - - + + diff --git a/si/press/index.html b/si/press/index.html index ad402982..1d49abef 100644 --- a/si/press/index.html +++ b/si/press/index.html @@ -56,7 +56,7 @@ - + @@ -461,7 +461,7 @@ - - + + diff --git a/si/privacy-policy/index.html b/si/privacy-policy/index.html index aaf3be25..18886648 100644 --- a/si/privacy-policy/index.html +++ b/si/privacy-policy/index.html @@ -59,7 +59,7 @@ - + @@ -370,8 +370,8 @@ - - - + + + diff --git a/si/projects/humanitarian-tournament-in-maribor/index.html b/si/projects/humanitarian-tournament-in-maribor/index.html index 0344a777..78a27786 100644 --- a/si/projects/humanitarian-tournament-in-maribor/index.html +++ b/si/projects/humanitarian-tournament-in-maribor/index.html @@ -62,7 +62,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/si/projects/in-memory-of-frosina-kulakova/index.html b/si/projects/in-memory-of-frosina-kulakova/index.html index 3f6583a2..7d2118c8 100644 --- a/si/projects/in-memory-of-frosina-kulakova/index.html +++ b/si/projects/in-memory-of-frosina-kulakova/index.html @@ -62,7 +62,7 @@ - + @@ -343,8 +343,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 37ef0c09..88398107 100644 --- a/si/projects/in-memory-of-the-kochani-victims/index.html +++ b/si/projects/in-memory-of-the-kochani-victims/index.html @@ -62,7 +62,7 @@ - + @@ -351,8 +351,8 @@ - - - + + + diff --git a/si/projects/index.html b/si/projects/index.html index 96659623..b611ce15 100644 --- a/si/projects/index.html +++ b/si/projects/index.html @@ -59,7 +59,7 @@ - + @@ -515,9 +515,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 bedd2795..4ff8cb3e 100644 --- a/si/projects/joint-walk-path-around-the-wire/index.html +++ b/si/projects/joint-walk-path-around-the-wire/index.html @@ -62,7 +62,7 @@ - + @@ -381,8 +381,8 @@ - - - + + + diff --git a/si/projects/kafanska-vecher-2025/index.html b/si/projects/kafanska-vecher-2025/index.html index c7bad496..4348600b 100644 --- a/si/projects/kafanska-vecher-2025/index.html +++ b/si/projects/kafanska-vecher-2025/index.html @@ -62,7 +62,7 @@ - + @@ -407,8 +407,8 @@ - - - + + + diff --git a/si/projects/macedonian-student-night-in-ljubljana/index.html b/si/projects/macedonian-student-night-in-ljubljana/index.html index b20787c6..05cc7b93 100644 --- a/si/projects/macedonian-student-night-in-ljubljana/index.html +++ b/si/projects/macedonian-student-night-in-ljubljana/index.html @@ -62,7 +62,7 @@ - + @@ -396,8 +396,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 76366c14..095fb1f5 100644 --- a/si/projects/meet-student-slovenia-2023/index.html +++ b/si/projects/meet-student-slovenia-2023/index.html @@ -62,7 +62,7 @@ - + @@ -441,8 +441,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 2365ac93..915be926 100644 --- a/si/projects/meet-student-slovenia-2024/index.html +++ b/si/projects/meet-student-slovenia-2024/index.html @@ -62,7 +62,7 @@ - + @@ -420,8 +420,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 a09c3cd1..03ee7115 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 @@ -62,7 +62,7 @@ - + @@ -401,8 +401,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 6f12d0c1..09135f4f 100644 --- a/si/projects/morning-coffee-in-front-of-ctk/index.html +++ b/si/projects/morning-coffee-in-front-of-ctk/index.html @@ -62,7 +62,7 @@ - + @@ -385,8 +385,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 fa662ee3..51012a12 100644 --- a/si/projects/paint-and-wine-at-sunset/index.html +++ b/si/projects/paint-and-wine-at-sunset/index.html @@ -62,7 +62,7 @@ - + @@ -390,8 +390,8 @@ - - - + + + diff --git a/si/projects/president-siljanovska-davkova-lecture-2026/index.html b/si/projects/president-siljanovska-davkova-lecture-2026/index.html index 8930cc6f..92fcc789 100644 --- a/si/projects/president-siljanovska-davkova-lecture-2026/index.html +++ b/si/projects/president-siljanovska-davkova-lecture-2026/index.html @@ -62,7 +62,7 @@ - + @@ -404,8 +404,8 @@ - - - + + + diff --git a/si/projects/sepa-webinar-2026/index.html b/si/projects/sepa-webinar-2026/index.html index 218d4a58..f196b7ce 100644 --- a/si/projects/sepa-webinar-2026/index.html +++ b/si/projects/sepa-webinar-2026/index.html @@ -62,7 +62,7 @@ - + @@ -377,8 +377,8 @@ - - - + + + diff --git a/si/projects/teambuilding-hub-opening-2026/index.html b/si/projects/teambuilding-hub-opening-2026/index.html index 3c8731ba..83d8cb8e 100644 --- a/si/projects/teambuilding-hub-opening-2026/index.html +++ b/si/projects/teambuilding-hub-opening-2026/index.html @@ -62,7 +62,7 @@ - + @@ -414,8 +414,8 @@ - - - + + + diff --git a/si/projects/watching-handball-together-in-slovenia/index.html b/si/projects/watching-handball-together-in-slovenia/index.html index 27a36462..c10868a3 100644 --- a/si/projects/watching-handball-together-in-slovenia/index.html +++ b/si/projects/watching-handball-together-in-slovenia/index.html @@ -62,7 +62,7 @@ - + @@ -381,8 +381,8 @@ - - - + + + diff --git a/si/projects/watching-macedonia-wales-football-match/index.html b/si/projects/watching-macedonia-wales-football-match/index.html index 15121904..76d98838 100644 --- a/si/projects/watching-macedonia-wales-football-match/index.html +++ b/si/projects/watching-macedonia-wales-football-match/index.html @@ -62,7 +62,7 @@ - + @@ -390,8 +390,8 @@ - - - + + + diff --git a/si/student-welcome-guide/academic-life/index.html b/si/student-welcome-guide/academic-life/index.html index 4e8d6119..b49bbc37 100644 --- a/si/student-welcome-guide/academic-life/index.html +++ b/si/student-welcome-guide/academic-life/index.html @@ -61,7 +61,7 @@ - + @@ -368,9 +368,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/administrative-basics/index.html b/si/student-welcome-guide/administrative-basics/index.html index 1b594ae2..a7d0698f 100644 --- a/si/student-welcome-guide/administrative-basics/index.html +++ b/si/student-welcome-guide/administrative-basics/index.html @@ -61,7 +61,7 @@ - + @@ -356,9 +356,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/admission-and-enrolment/index.html b/si/student-welcome-guide/admission-and-enrolment/index.html index 4982c8c3..d1902553 100644 --- a/si/student-welcome-guide/admission-and-enrolment/index.html +++ b/si/student-welcome-guide/admission-and-enrolment/index.html @@ -61,7 +61,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/application-deadlines/index.html b/si/student-welcome-guide/application-deadlines/index.html index e5b07b8d..c160c48f 100644 --- a/si/student-welcome-guide/application-deadlines/index.html +++ b/si/student-welcome-guide/application-deadlines/index.html @@ -61,7 +61,7 @@ - + @@ -363,9 +363,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/arrival-checklist/index.html b/si/student-welcome-guide/arrival-checklist/index.html index 192b671b..54927981 100644 --- a/si/student-welcome-guide/arrival-checklist/index.html +++ b/si/student-welcome-guide/arrival-checklist/index.html @@ -61,7 +61,7 @@ - + @@ -381,9 +381,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/bachelor-application/index.html b/si/student-welcome-guide/bachelor-application/index.html index bcfcd8d6..7f66069b 100644 --- a/si/student-welcome-guide/bachelor-application/index.html +++ b/si/student-welcome-guide/bachelor-application/index.html @@ -61,7 +61,7 @@ - + @@ -393,9 +393,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/choose-a-programme/index.html b/si/student-welcome-guide/choose-a-programme/index.html index 007b608b..ea8e5d24 100644 --- a/si/student-welcome-guide/choose-a-programme/index.html +++ b/si/student-welcome-guide/choose-a-programme/index.html @@ -61,7 +61,7 @@ - + @@ -384,9 +384,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/complete-student-journey/index.html b/si/student-welcome-guide/complete-student-journey/index.html index afdf8f9c..563efc20 100644 --- a/si/student-welcome-guide/complete-student-journey/index.html +++ b/si/student-welcome-guide/complete-student-journey/index.html @@ -61,7 +61,7 @@ - + @@ -409,9 +409,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/document-preparation/index.html b/si/student-welcome-guide/document-preparation/index.html index cd0d7f05..a5fc7aed 100644 --- a/si/student-welcome-guide/document-preparation/index.html +++ b/si/student-welcome-guide/document-preparation/index.html @@ -61,7 +61,7 @@ - + @@ -358,9 +358,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/evs-application-guide/index.html b/si/student-welcome-guide/evs-application-guide/index.html index 8df5c8e5..b1c9664a 100644 --- a/si/student-welcome-guide/evs-application-guide/index.html +++ b/si/student-welcome-guide/evs-application-guide/index.html @@ -61,7 +61,7 @@ - + @@ -376,9 +376,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/healthcare-in-slovenia/index.html b/si/student-welcome-guide/healthcare-in-slovenia/index.html index 07ddc0c3..0aa053fc 100644 --- a/si/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/si/student-welcome-guide/healthcare-in-slovenia/index.html @@ -61,7 +61,7 @@ - + @@ -419,9 +419,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/index.html b/si/student-welcome-guide/index.html index 8355a69b..b18505ba 100644 --- a/si/student-welcome-guide/index.html +++ b/si/student-welcome-guide/index.html @@ -59,7 +59,7 @@ - + @@ -527,10 +527,10 @@ - - - - - + + + + + diff --git a/si/student-welcome-guide/master-application/index.html b/si/student-welcome-guide/master-application/index.html index 5423c841..aa39a520 100644 --- a/si/student-welcome-guide/master-application/index.html +++ b/si/student-welcome-guide/master-application/index.html @@ -61,7 +61,7 @@ - + @@ -370,9 +370,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/means-accommodation-address/index.html b/si/student-welcome-guide/means-accommodation-address/index.html index b4588b40..b1ea7ce5 100644 --- a/si/student-welcome-guide/means-accommodation-address/index.html +++ b/si/student-welcome-guide/means-accommodation-address/index.html @@ -61,7 +61,7 @@ - + @@ -442,9 +442,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/my-route/index.html b/si/student-welcome-guide/my-route/index.html index 9214517c..9e704907 100644 --- a/si/student-welcome-guide/my-route/index.html +++ b/si/student-welcome-guide/my-route/index.html @@ -61,7 +61,7 @@ - +

Vaša osebna študijska pot

@@ -270,9 +270,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 030c6cef..02ed7892 100644 --- a/si/student-welcome-guide/official-sources-and-checklists/index.html +++ b/si/student-welcome-guide/official-sources-and-checklists/index.html @@ -61,7 +61,7 @@ - + @@ -387,9 +387,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/prepare-to-move/index.html b/si/student-welcome-guide/prepare-to-move/index.html index b7810345..a4142670 100644 --- a/si/student-welcome-guide/prepare-to-move/index.html +++ b/si/student-welcome-guide/prepare-to-move/index.html @@ -61,7 +61,7 @@ - + @@ -414,9 +414,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/recognition-of-education/index.html b/si/student-welcome-guide/recognition-of-education/index.html index 4579c20b..f60a63ea 100644 --- a/si/student-welcome-guide/recognition-of-education/index.html +++ b/si/student-welcome-guide/recognition-of-education/index.html @@ -61,7 +61,7 @@ - + @@ -359,9 +359,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/renew-change-graduate/index.html b/si/student-welcome-guide/renew-change-graduate/index.html index 6cc622f1..ca0a097e 100644 --- a/si/student-welcome-guide/renew-change-graduate/index.html +++ b/si/student-welcome-guide/renew-change-graduate/index.html @@ -61,7 +61,7 @@ - + @@ -368,9 +368,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 2ec00e4c..971ed926 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 @@ -61,7 +61,7 @@ - + @@ -408,9 +408,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-accommodation/index.html b/si/student-welcome-guide/student-accommodation/index.html index 639d4f9b..711c803c 100644 --- a/si/student-welcome-guide/student-accommodation/index.html +++ b/si/student-welcome-guide/student-accommodation/index.html @@ -61,7 +61,7 @@ - + @@ -409,9 +409,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-budget/index.html b/si/student-welcome-guide/student-budget/index.html index 53e79e90..fd3c2e80 100644 --- a/si/student-welcome-guide/student-budget/index.html +++ b/si/student-welcome-guide/student-budget/index.html @@ -61,7 +61,7 @@ - + @@ -378,9 +378,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-meals/index.html b/si/student-welcome-guide/student-meals/index.html index 74e19983..bf5f0c18 100644 --- a/si/student-welcome-guide/student-meals/index.html +++ b/si/student-welcome-guide/student-meals/index.html @@ -61,7 +61,7 @@ - + @@ -366,9 +366,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 7fa8e07d..63882b0a 100644 --- a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -61,7 +61,7 @@ - + @@ -403,9 +403,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-residence-permit/index.html b/si/student-welcome-guide/student-residence-permit/index.html index 54da93f1..e9e0d1b4 100644 --- a/si/student-welcome-guide/student-residence-permit/index.html +++ b/si/student-welcome-guide/student-residence-permit/index.html @@ -61,7 +61,7 @@ - + @@ -420,9 +420,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-transport/index.html b/si/student-welcome-guide/student-transport/index.html index 2451eee3..c0f74f3c 100644 --- a/si/student-welcome-guide/student-transport/index.html +++ b/si/student-welcome-guide/student-transport/index.html @@ -61,7 +61,7 @@ - + @@ -387,9 +387,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-work/index.html b/si/student-welcome-guide/student-work/index.html index e4641b15..ade9fb31 100644 --- a/si/student-welcome-guide/student-work/index.html +++ b/si/student-welcome-guide/student-work/index.html @@ -61,7 +61,7 @@ - + @@ -361,9 +361,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/study-cities/index.html b/si/student-welcome-guide/study-cities/index.html index 8db4c974..6d3ada89 100644 --- a/si/student-welcome-guide/study-cities/index.html +++ b/si/student-welcome-guide/study-cities/index.html @@ -61,7 +61,7 @@ - + @@ -421,9 +421,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/tuition-and-scholarships/index.html b/si/student-welcome-guide/tuition-and-scholarships/index.html index 649a4a9f..73fd6abc 100644 --- a/si/student-welcome-guide/tuition-and-scholarships/index.html +++ b/si/student-welcome-guide/tuition-and-scholarships/index.html @@ -61,7 +61,7 @@ - + @@ -365,9 +365,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 e65e9ebf..dc1a65c8 100644 --- a/si/student-welcome-guide/visa-and-residence-explained/index.html +++ b/si/student-welcome-guide/visa-and-residence-explained/index.html @@ -61,7 +61,7 @@ - + @@ -392,9 +392,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/wellbeing-and-community/index.html b/si/student-welcome-guide/wellbeing-and-community/index.html index c164b373..c889fb6a 100644 --- a/si/student-welcome-guide/wellbeing-and-community/index.html +++ b/si/student-welcome-guide/wellbeing-and-community/index.html @@ -61,7 +61,7 @@ - + @@ -357,9 +357,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 fd960198..e7c8cba7 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 @@ -61,7 +61,7 @@ - + @@ -427,9 +427,9 @@ - - - - + + + + diff --git a/si/support/index.html b/si/support/index.html index 3e4003e9..5b72044c 100644 --- a/si/support/index.html +++ b/si/support/index.html @@ -57,7 +57,7 @@ - + @@ -598,9 +598,9 @@ - - - - + + + + diff --git a/si/timeline-and-milestones/index.html b/si/timeline-and-milestones/index.html index 98d25e45..60d74e27 100644 --- a/si/timeline-and-milestones/index.html +++ b/si/timeline-and-milestones/index.html @@ -59,7 +59,7 @@ - + @@ -513,8 +513,8 @@ - - - + + + \ No newline at end of file