diff --git a/css/components/_cards.css b/css/components/_cards.css index e8431a9f..14f27ff9 100644 --- a/css/components/_cards.css +++ b/css/components/_cards.css @@ -49,6 +49,45 @@ line-height: 24px; } +/* Latest-news cards: clickable media, type badge, placeholder tiles */ +.news-card-media { + position: relative; + display: block; + margin-bottom: 24px; + border-radius: 8px; + overflow: hidden; +} +.news-card-media img { height: 220px; margin-bottom: 0; display: block; } +.news-card .news-ph { + height: 220px; + display: flex; + align-items: center; + justify-content: center; + font-size: 40px; + color: rgba(255, 255, 255, 0.85); + background: rgba(255, 255, 255, 0.14); +} +.news-badge { + position: absolute; + top: 12px; + left: 12px; + display: inline-flex; + align-items: center; + gap: 6px; + font-size: 12px; + font-weight: 600; + color: #FFFFFF; + padding: 4px 10px; + border-radius: 999px; + background: #101828; +} +.news-badge i { font-size: 11px; } +.news-badge--project { background: #1F5C72; } +.news-badge--blog { background: #E8833A; } +.news-badge--news { background: #7C5CBF; } +.news-card h3 a { color: #FFFFFF; text-decoration: none; } +.news-card h3 a:hover { text-decoration: underline; } + /* 2. Kartice s pričevanji (.testimonial-card) */ .testimonial-card { diff --git a/css/main.css b/css/main.css index d197bb20..1405a49c 100644 --- a/css/main.css +++ b/css/main.css @@ -34,4 +34,5 @@ @import 'pages/_timeline.css'; @import 'pages/_guide.css'; @import 'pages/_faq.css'; -@import 'pages/_blog.css'; \ No newline at end of file +@import 'pages/_blog.css'; +@import 'pages/_news.css'; \ No newline at end of file diff --git a/css/pages/_news.css b/css/pages/_news.css new file mode 100644 index 00000000..da7c7990 --- /dev/null +++ b/css/pages/_news.css @@ -0,0 +1,100 @@ +/* ========================================================================== + News hub (//news/) — filterable feed of projects, blog and news + ========================================================================== */ +.news-hub { font-family: 'Inter', sans-serif; } + +.newshub-hero { + background: linear-gradient(180deg, #F5FAFB 0%, #FFFFFF 100%); + padding: 112px 24px 40px; /* clears the fixed 80px header */ + text-align: center; +} +.newshub-eyebrow { + display: inline-block; + color: #2D738C; + font-weight: 700; + font-size: 14px; + letter-spacing: 0.06em; + text-transform: uppercase; + margin-bottom: 12px; +} +.newshub-hero h1 { max-width: 760px; margin: 0 auto 16px; font-size: 42px; line-height: 1.12; color: #101828; } +.newshub-lead { max-width: 640px; margin: 0 auto; font-size: 18px; line-height: 28px; color: #475467; } + +.newshub-list { max-width: 1120px; margin: 40px auto 72px; padding: 0 24px; } +.newshub-filters { + display: flex; + flex-wrap: wrap; + gap: 10px; + margin-bottom: 28px; + padding-bottom: 24px; + border-bottom: 1px solid #EAECF0; +} +.newshub-chip { + font-family: inherit; + font-size: 14px; + font-weight: 600; + color: #475467; + background: #F2F4F7; + border: 1px solid transparent; + border-radius: 999px; + padding: 9px 16px; + cursor: pointer; + transition: background 0.15s ease, color 0.15s ease; +} +.newshub-chip:hover { background: #E4E7EC; } +.newshub-chip.is-active { background: #101828; color: #FFFFFF; } + +.newshub-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); + gap: 24px; +} +.newshub-card { + display: flex; + flex-direction: column; + background: #FFFFFF; + border: 1px solid #EAECF0; + border-radius: 16px; + overflow: hidden; + box-shadow: 0 4px 12px rgba(16, 24, 40, 0.04); + transition: transform 0.18s ease, box-shadow 0.18s ease; +} +.newshub-card[hidden] { display: none; } +.newshub-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(16, 24, 40, 0.10); } +.newshub-media { position: relative; display: block; } +.newshub-media img { width: 100%; height: 190px; object-fit: cover; display: block; } +.newshub-media .news-ph { + height: 190px; + display: flex; + align-items: center; + justify-content: center; + font-size: 38px; + color: #B7BDC7; + background: linear-gradient(135deg, #F2F4F7 0%, #E4E7EC 100%); +} +.newshub-media .news-badge { + position: absolute; + top: 12px; + left: 12px; + display: inline-flex; + align-items: center; + gap: 6px; + font-size: 12px; + font-weight: 600; + color: #FFFFFF; + padding: 4px 10px; + border-radius: 999px; + background: #101828; +} +.newshub-media .news-badge i { font-size: 11px; } +.newshub-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; } +.newshub-date { font-size: 13px; font-weight: 600; color: #98A2B3; margin: 0; } +.newshub-card h3 { margin: 0; font-size: 19px; line-height: 1.3; } +.newshub-card h3 a { color: #101828; text-decoration: none; } +.newshub-card h3 a:hover { color: #2D738C; } +.newshub-excerpt { margin: 0; font-size: 14px; line-height: 22px; color: #667085; } + +@media (max-width: 768px) { + .newshub-hero { padding: 92px 20px 32px; } + .newshub-hero h1 { font-size: 30px; } +} diff --git a/en/about-us/index.html b/en/about-us/index.html index 1c1f47d3..c14f6f1f 100644 --- a/en/about-us/index.html +++ b/en/about-us/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/blog/index.html b/en/blog/index.html index bf6ae39e..6c7a51d0 100644 --- a/en/blog/index.html +++ b/en/blog/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/cookie-policy/index.html b/en/cookie-policy/index.html index 84f696ef..e651ae47 100644 --- a/en/cookie-policy/index.html +++ b/en/cookie-policy/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/faq/index.html b/en/faq/index.html index 1b3f102c..6b5cce44 100644 --- a/en/faq/index.html +++ b/en/faq/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 dd1d65d4..dbcfb446 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 5fc8633b..67cd4b82 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/get-to-know-macedonia/index.html b/en/get-to-know-macedonia/index.html index 49dbebd0..c428b1d5 100644 --- a/en/get-to-know-macedonia/index.html +++ b/en/get-to-know-macedonia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 f9874214..3acc5730 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 274bcd2e..2dbdd10b 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 3185531b..58d3d033 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 4a550bbb..35ca82a7 100644 --- a/en/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/en/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 f44dc3e3..6da6780f 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/get-to-know-slovenia/index.html b/en/get-to-know-slovenia/index.html index 6f3a1b04..26b38dc6 100644 --- a/en/get-to-know-slovenia/index.html +++ b/en/get-to-know-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 5b641334..37a4d98a 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 b32737e2..0efba2f8 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 b406aea4..fae17009 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 39f8cfe5..8bb5abde 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 0c0a3c45..675c7fb6 100644 --- a/en/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/en/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/index.html b/en/index.html index 3ac65bd9..a3a04316 100644 --- a/en/index.html +++ b/en/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ @@ -258,38 +258,44 @@ -
+

Latest news

-

Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharet.

+

What is new at MSOS, from events and projects to blog stories and announcements.

-
- Pink and blue tinted image of a snowy mountain peak + -
- See all + See all
diff --git a/en/news/index.html b/en/news/index.html new file mode 100644 index 00000000..0a95deed --- /dev/null +++ b/en/news/index.html @@ -0,0 +1,417 @@ + + + + + + News and updates - MSOS + + + + + + + + + + + + + + + + + + + + + +
+
+
+

Select Language

+ +
+ +
+
+ + +
+
+ News +

News and updates

+

Everything new at MSOS in one place: events and projects, blog stories and announcements.

+
+
+
+ + + + +
+
+ + + + + + + + + + + + + + + +
+
+
+ + + + + + + + diff --git a/en/privacy-policy/index.html b/en/privacy-policy/index.html index a0ddf5e4..b2ddd1b9 100644 --- a/en/privacy-policy/index.html +++ b/en/privacy-policy/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/projects/humanitarian-tournament-in-maribor/index.html b/en/projects/humanitarian-tournament-in-maribor/index.html index 7e22e095..cf7965a4 100644 --- a/en/projects/humanitarian-tournament-in-maribor/index.html +++ b/en/projects/humanitarian-tournament-in-maribor/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/projects/in-memory-of-frosina-kulakova/index.html b/en/projects/in-memory-of-frosina-kulakova/index.html index 2e6530e8..12e03027 100644 --- a/en/projects/in-memory-of-frosina-kulakova/index.html +++ b/en/projects/in-memory-of-frosina-kulakova/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 4bf08521..72d80b30 100644 --- a/en/projects/in-memory-of-the-kochani-victims/index.html +++ b/en/projects/in-memory-of-the-kochani-victims/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/projects/index.html b/en/projects/index.html index e09db8b8..a7d8bb57 100644 --- a/en/projects/index.html +++ b/en/projects/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/projects/macedonian-student-night-in-ljubljana/index.html b/en/projects/macedonian-student-night-in-ljubljana/index.html index 14bdcffa..d1627e25 100644 --- a/en/projects/macedonian-student-night-in-ljubljana/index.html +++ b/en/projects/macedonian-student-night-in-ljubljana/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html b/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html index ca762dda..2500ad8e 100644 --- a/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html +++ b/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/projects/meet-student-slovenia-2023/index.html b/en/projects/meet-student-slovenia-2023/index.html index b507a917..1fee64fc 100644 --- a/en/projects/meet-student-slovenia-2023/index.html +++ b/en/projects/meet-student-slovenia-2023/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/projects/meet-student-slovenia-2024/index.html b/en/projects/meet-student-slovenia-2024/index.html index f9eee4a1..b4314005 100644 --- a/en/projects/meet-student-slovenia-2024/index.html +++ b/en/projects/meet-student-slovenia-2024/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 6e35a1a5..82b80912 100644 --- a/en/projects/morning-coffee-in-front-of-ctk/index.html +++ b/en/projects/morning-coffee-in-front-of-ctk/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/projects/paint-and-wine-at-sunset/index.html b/en/projects/paint-and-wine-at-sunset/index.html index efb2b0ab..b7b01043 100644 --- a/en/projects/paint-and-wine-at-sunset/index.html +++ b/en/projects/paint-and-wine-at-sunset/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/projects/watching-handball-together-in-slovenia/index.html b/en/projects/watching-handball-together-in-slovenia/index.html index dc9ef813..15da400e 100644 --- a/en/projects/watching-handball-together-in-slovenia/index.html +++ b/en/projects/watching-handball-together-in-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/academic-life/index.html b/en/student-welcome-guide/academic-life/index.html index aeafa6f6..a63ea72c 100644 --- a/en/student-welcome-guide/academic-life/index.html +++ b/en/student-welcome-guide/academic-life/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/administrative-basics/index.html b/en/student-welcome-guide/administrative-basics/index.html index 5f94eb41..796e0034 100644 --- a/en/student-welcome-guide/administrative-basics/index.html +++ b/en/student-welcome-guide/administrative-basics/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/admission-and-enrolment/index.html b/en/student-welcome-guide/admission-and-enrolment/index.html index 2c3a99d7..cb922573 100644 --- a/en/student-welcome-guide/admission-and-enrolment/index.html +++ b/en/student-welcome-guide/admission-and-enrolment/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/application-deadlines/index.html b/en/student-welcome-guide/application-deadlines/index.html index e3bf22d2..0f2497a4 100644 --- a/en/student-welcome-guide/application-deadlines/index.html +++ b/en/student-welcome-guide/application-deadlines/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/arrival-checklist/index.html b/en/student-welcome-guide/arrival-checklist/index.html index d626b868..74a436cc 100644 --- a/en/student-welcome-guide/arrival-checklist/index.html +++ b/en/student-welcome-guide/arrival-checklist/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/bachelor-application/index.html b/en/student-welcome-guide/bachelor-application/index.html index e18d330d..a150ee0b 100644 --- a/en/student-welcome-guide/bachelor-application/index.html +++ b/en/student-welcome-guide/bachelor-application/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/choose-a-programme/index.html b/en/student-welcome-guide/choose-a-programme/index.html index bcdde318..5af0253a 100644 --- a/en/student-welcome-guide/choose-a-programme/index.html +++ b/en/student-welcome-guide/choose-a-programme/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/complete-student-journey/index.html b/en/student-welcome-guide/complete-student-journey/index.html index 63cd6970..4fc9ad54 100644 --- a/en/student-welcome-guide/complete-student-journey/index.html +++ b/en/student-welcome-guide/complete-student-journey/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/document-preparation/index.html b/en/student-welcome-guide/document-preparation/index.html index 1fc88b10..c9056517 100644 --- a/en/student-welcome-guide/document-preparation/index.html +++ b/en/student-welcome-guide/document-preparation/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/evs-application-guide/index.html b/en/student-welcome-guide/evs-application-guide/index.html index 64bcca4a..41879aea 100644 --- a/en/student-welcome-guide/evs-application-guide/index.html +++ b/en/student-welcome-guide/evs-application-guide/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/healthcare-in-slovenia/index.html b/en/student-welcome-guide/healthcare-in-slovenia/index.html index 984b1414..44773b4d 100644 --- a/en/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/en/student-welcome-guide/healthcare-in-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/index.html b/en/student-welcome-guide/index.html index 12aec89f..12fc906c 100644 --- a/en/student-welcome-guide/index.html +++ b/en/student-welcome-guide/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/master-application/index.html b/en/student-welcome-guide/master-application/index.html index 47e11327..bebc8bd9 100644 --- a/en/student-welcome-guide/master-application/index.html +++ b/en/student-welcome-guide/master-application/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/means-accommodation-address/index.html b/en/student-welcome-guide/means-accommodation-address/index.html index f4dadf32..fcfbe03c 100644 --- a/en/student-welcome-guide/means-accommodation-address/index.html +++ b/en/student-welcome-guide/means-accommodation-address/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/my-route/index.html b/en/student-welcome-guide/my-route/index.html index 4f0e2556..d80523de 100644 --- a/en/student-welcome-guide/my-route/index.html +++ b/en/student-welcome-guide/my-route/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 1beea14a..50409c14 100644 --- a/en/student-welcome-guide/official-sources-and-checklists/index.html +++ b/en/student-welcome-guide/official-sources-and-checklists/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/prepare-to-move/index.html b/en/student-welcome-guide/prepare-to-move/index.html index 329ca5be..212ac01f 100644 --- a/en/student-welcome-guide/prepare-to-move/index.html +++ b/en/student-welcome-guide/prepare-to-move/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/recognition-of-education/index.html b/en/student-welcome-guide/recognition-of-education/index.html index 4cb45fc9..c80d5a70 100644 --- a/en/student-welcome-guide/recognition-of-education/index.html +++ b/en/student-welcome-guide/recognition-of-education/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/renew-change-graduate/index.html b/en/student-welcome-guide/renew-change-graduate/index.html index 74073914..cb308321 100644 --- a/en/student-welcome-guide/renew-change-graduate/index.html +++ b/en/student-welcome-guide/renew-change-graduate/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 89b4c97f..8986c6b6 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/student-accommodation/index.html b/en/student-welcome-guide/student-accommodation/index.html index 922a489e..22551def 100644 --- a/en/student-welcome-guide/student-accommodation/index.html +++ b/en/student-welcome-guide/student-accommodation/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/student-budget/index.html b/en/student-welcome-guide/student-budget/index.html index b31a42e9..054b671d 100644 --- a/en/student-welcome-guide/student-budget/index.html +++ b/en/student-welcome-guide/student-budget/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/student-meals/index.html b/en/student-welcome-guide/student-meals/index.html index 74712ccf..8a50a80a 100644 --- a/en/student-welcome-guide/student-meals/index.html +++ b/en/student-welcome-guide/student-meals/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 b935f736..ceeb6781 100644 --- a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/student-residence-permit/index.html b/en/student-welcome-guide/student-residence-permit/index.html index 1085a2fe..0fd6dbbf 100644 --- a/en/student-welcome-guide/student-residence-permit/index.html +++ b/en/student-welcome-guide/student-residence-permit/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/student-transport/index.html b/en/student-welcome-guide/student-transport/index.html index ca863569..d1166e65 100644 --- a/en/student-welcome-guide/student-transport/index.html +++ b/en/student-welcome-guide/student-transport/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/student-work/index.html b/en/student-welcome-guide/student-work/index.html index 3a29f9fc..09a6d346 100644 --- a/en/student-welcome-guide/student-work/index.html +++ b/en/student-welcome-guide/student-work/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/study-cities/index.html b/en/student-welcome-guide/study-cities/index.html index 5cc4fee1..46447835 100644 --- a/en/student-welcome-guide/study-cities/index.html +++ b/en/student-welcome-guide/study-cities/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/tuition-and-scholarships/index.html b/en/student-welcome-guide/tuition-and-scholarships/index.html index f052b1a1..51eb5bca 100644 --- a/en/student-welcome-guide/tuition-and-scholarships/index.html +++ b/en/student-welcome-guide/tuition-and-scholarships/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 1767a51c..a94c5cda 100644 --- a/en/student-welcome-guide/visa-and-residence-explained/index.html +++ b/en/student-welcome-guide/visa-and-residence-explained/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/student-welcome-guide/wellbeing-and-community/index.html b/en/student-welcome-guide/wellbeing-and-community/index.html index 46ccedde..e1299bbf 100644 --- a/en/student-welcome-guide/wellbeing-and-community/index.html +++ b/en/student-welcome-guide/wellbeing-and-community/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 d7de7118..dea6fd6c 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/en/timeline-and-milestones/index.html b/en/timeline-and-milestones/index.html index 22137f20..8c3e633c 100644 --- a/en/timeline-and-milestones/index.html +++ b/en/timeline-and-milestones/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/blog/index.html b/mk/blog/index.html index bb81ecf2..1854895d 100644 --- a/mk/blog/index.html +++ b/mk/blog/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/cookie-policy/index.html b/mk/cookie-policy/index.html index 2955d9f6..bf4b2658 100644 --- a/mk/cookie-policy/index.html +++ b/mk/cookie-policy/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/faq/index.html b/mk/faq/index.html index f71963b2..b2b1db37 100644 --- a/mk/faq/index.html +++ b/mk/faq/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 9be475a7..8e333e46 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 ecd5e167..4138c8e8 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/get-to-know-macedonia/index.html b/mk/get-to-know-macedonia/index.html index 3a86b737..674d3d1e 100644 --- a/mk/get-to-know-macedonia/index.html +++ b/mk/get-to-know-macedonia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 ec9abe9e..c2fc4bf3 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 a860f810..eff6eceb 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 a1a8ce7d..a2f03e44 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 8fdc3bb1..59666146 100644 --- a/mk/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/mk/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 5e5db305..5e56280a 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/get-to-know-slovenia/index.html b/mk/get-to-know-slovenia/index.html index bfef1fa6..bc10a66b 100644 --- a/mk/get-to-know-slovenia/index.html +++ b/mk/get-to-know-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 562689b4..b1fb3267 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 1c5b05b3..0dfca374 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 f4e73679..03f4c8ce 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 0188cdd5..98d878bc 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 327f18c3..2ce0d719 100644 --- a/mk/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/mk/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/index.html b/mk/index.html index 6b945beb..0302a72d 100644 --- a/mk/index.html +++ b/mk/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ @@ -261,38 +261,44 @@
-
+

Најнови вести

-

Don’t miss what’s happening! Here you’ll find all our updates, from student news to upcoming activities and community highlights.

+

Што е ново кај МСОС, од настани и проекти до блог приказни и објави.

-
- Слика на снежен планински врв во розови и сини нијанси + -
- Жена презентира пред табла со лепливи белешки на тим + -
- + Види ги сите
diff --git a/mk/news/index.html b/mk/news/index.html new file mode 100644 index 00000000..af161ed0 --- /dev/null +++ b/mk/news/index.html @@ -0,0 +1,415 @@ + + + + + + Вести и новости - MSOS + + + + + + + + + + + + + + + + + + + + + +
+
+
+

Избери јазик

+ +
+ +
+
+ + +
+
+ Вести +

Вести и новости

+

Сè ново кај МСОС на едно место: настани и проекти, блог приказни и објави.

+
+
+
+ + + + +
+
+ + + + + + + + + + + + + + + +
+
+
+ + + + + + + + diff --git a/mk/privacy-policy/index.html b/mk/privacy-policy/index.html index f28c54aa..15c613a1 100644 --- a/mk/privacy-policy/index.html +++ b/mk/privacy-policy/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/projects/humanitarian-tournament-in-maribor/index.html b/mk/projects/humanitarian-tournament-in-maribor/index.html index b5e3dfb2..8ade9da3 100644 --- a/mk/projects/humanitarian-tournament-in-maribor/index.html +++ b/mk/projects/humanitarian-tournament-in-maribor/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/projects/in-memory-of-frosina-kulakova/index.html b/mk/projects/in-memory-of-frosina-kulakova/index.html index 19bbd954..651a81c2 100644 --- a/mk/projects/in-memory-of-frosina-kulakova/index.html +++ b/mk/projects/in-memory-of-frosina-kulakova/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 fb4d05df..97faea5f 100644 --- a/mk/projects/in-memory-of-the-kochani-victims/index.html +++ b/mk/projects/in-memory-of-the-kochani-victims/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/projects/index.html b/mk/projects/index.html index cf2c08c4..afbb0809 100644 --- a/mk/projects/index.html +++ b/mk/projects/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/projects/macedonian-student-night-in-ljubljana/index.html b/mk/projects/macedonian-student-night-in-ljubljana/index.html index de1253d1..60645561 100644 --- a/mk/projects/macedonian-student-night-in-ljubljana/index.html +++ b/mk/projects/macedonian-student-night-in-ljubljana/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/projects/meet-student-slovenia-2023/index.html b/mk/projects/meet-student-slovenia-2023/index.html index 468558a2..b29f3bcf 100644 --- a/mk/projects/meet-student-slovenia-2023/index.html +++ b/mk/projects/meet-student-slovenia-2023/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/projects/meet-student-slovenia-2024/index.html b/mk/projects/meet-student-slovenia-2024/index.html index 434c053a..b8bbf637 100644 --- a/mk/projects/meet-student-slovenia-2024/index.html +++ b/mk/projects/meet-student-slovenia-2024/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 35cd9e70..e36e8e53 100644 --- a/mk/projects/morning-coffee-in-front-of-ctk/index.html +++ b/mk/projects/morning-coffee-in-front-of-ctk/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/projects/paint-and-wine-at-sunset/index.html b/mk/projects/paint-and-wine-at-sunset/index.html index fde97d35..69a6302e 100644 --- a/mk/projects/paint-and-wine-at-sunset/index.html +++ b/mk/projects/paint-and-wine-at-sunset/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/projects/watching-handball-together-in-slovenia/index.html b/mk/projects/watching-handball-together-in-slovenia/index.html index b522fb42..775e3a86 100644 --- a/mk/projects/watching-handball-together-in-slovenia/index.html +++ b/mk/projects/watching-handball-together-in-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/academic-life/index.html b/mk/student-welcome-guide/academic-life/index.html index cb8e53fe..cb570fbf 100644 --- a/mk/student-welcome-guide/academic-life/index.html +++ b/mk/student-welcome-guide/academic-life/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/administrative-basics/index.html b/mk/student-welcome-guide/administrative-basics/index.html index 0916dfc5..0874bc9c 100644 --- a/mk/student-welcome-guide/administrative-basics/index.html +++ b/mk/student-welcome-guide/administrative-basics/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/admission-and-enrolment/index.html b/mk/student-welcome-guide/admission-and-enrolment/index.html index 9f6a8400..ec08400f 100644 --- a/mk/student-welcome-guide/admission-and-enrolment/index.html +++ b/mk/student-welcome-guide/admission-and-enrolment/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/application-deadlines/index.html b/mk/student-welcome-guide/application-deadlines/index.html index 42cb0afc..e2e9038f 100644 --- a/mk/student-welcome-guide/application-deadlines/index.html +++ b/mk/student-welcome-guide/application-deadlines/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/arrival-checklist/index.html b/mk/student-welcome-guide/arrival-checklist/index.html index 60262a8f..8fe81463 100644 --- a/mk/student-welcome-guide/arrival-checklist/index.html +++ b/mk/student-welcome-guide/arrival-checklist/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/bachelor-application/index.html b/mk/student-welcome-guide/bachelor-application/index.html index aff2079b..8bea7b9c 100644 --- a/mk/student-welcome-guide/bachelor-application/index.html +++ b/mk/student-welcome-guide/bachelor-application/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/choose-a-programme/index.html b/mk/student-welcome-guide/choose-a-programme/index.html index 5d810328..81bf8267 100644 --- a/mk/student-welcome-guide/choose-a-programme/index.html +++ b/mk/student-welcome-guide/choose-a-programme/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/complete-student-journey/index.html b/mk/student-welcome-guide/complete-student-journey/index.html index 35de0dd9..7358948a 100644 --- a/mk/student-welcome-guide/complete-student-journey/index.html +++ b/mk/student-welcome-guide/complete-student-journey/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/document-preparation/index.html b/mk/student-welcome-guide/document-preparation/index.html index 2ad00fec..cca81f13 100644 --- a/mk/student-welcome-guide/document-preparation/index.html +++ b/mk/student-welcome-guide/document-preparation/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/evs-application-guide/index.html b/mk/student-welcome-guide/evs-application-guide/index.html index e8cc0acb..e5b808fa 100644 --- a/mk/student-welcome-guide/evs-application-guide/index.html +++ b/mk/student-welcome-guide/evs-application-guide/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/healthcare-in-slovenia/index.html b/mk/student-welcome-guide/healthcare-in-slovenia/index.html index 2b66eb77..f074dca6 100644 --- a/mk/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/mk/student-welcome-guide/healthcare-in-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/index.html b/mk/student-welcome-guide/index.html index 7875c35b..63635e97 100644 --- a/mk/student-welcome-guide/index.html +++ b/mk/student-welcome-guide/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/master-application/index.html b/mk/student-welcome-guide/master-application/index.html index 15cc350d..3d1130ac 100644 --- a/mk/student-welcome-guide/master-application/index.html +++ b/mk/student-welcome-guide/master-application/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/means-accommodation-address/index.html b/mk/student-welcome-guide/means-accommodation-address/index.html index fdee3051..e9e0b689 100644 --- a/mk/student-welcome-guide/means-accommodation-address/index.html +++ b/mk/student-welcome-guide/means-accommodation-address/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/my-route/index.html b/mk/student-welcome-guide/my-route/index.html index 8e6b03dd..fbac8e43 100644 --- a/mk/student-welcome-guide/my-route/index.html +++ b/mk/student-welcome-guide/my-route/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 65528ccf..72a45407 100644 --- a/mk/student-welcome-guide/official-sources-and-checklists/index.html +++ b/mk/student-welcome-guide/official-sources-and-checklists/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/prepare-to-move/index.html b/mk/student-welcome-guide/prepare-to-move/index.html index a8b0573d..44a145e6 100644 --- a/mk/student-welcome-guide/prepare-to-move/index.html +++ b/mk/student-welcome-guide/prepare-to-move/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/recognition-of-education/index.html b/mk/student-welcome-guide/recognition-of-education/index.html index 387a53d5..266b55f1 100644 --- a/mk/student-welcome-guide/recognition-of-education/index.html +++ b/mk/student-welcome-guide/recognition-of-education/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/renew-change-graduate/index.html b/mk/student-welcome-guide/renew-change-graduate/index.html index ae6cba6d..125f41d9 100644 --- a/mk/student-welcome-guide/renew-change-graduate/index.html +++ b/mk/student-welcome-guide/renew-change-graduate/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 fbef3822..367c3ea9 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/student-accommodation/index.html b/mk/student-welcome-guide/student-accommodation/index.html index 6cdfbec3..ef07116b 100644 --- a/mk/student-welcome-guide/student-accommodation/index.html +++ b/mk/student-welcome-guide/student-accommodation/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/student-budget/index.html b/mk/student-welcome-guide/student-budget/index.html index b3639754..317a5cb7 100644 --- a/mk/student-welcome-guide/student-budget/index.html +++ b/mk/student-welcome-guide/student-budget/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/student-meals/index.html b/mk/student-welcome-guide/student-meals/index.html index 256e82f6..f45b986e 100644 --- a/mk/student-welcome-guide/student-meals/index.html +++ b/mk/student-welcome-guide/student-meals/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 6a4da9d9..423a0461 100644 --- a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/student-residence-permit/index.html b/mk/student-welcome-guide/student-residence-permit/index.html index 49d237df..6d4764da 100644 --- a/mk/student-welcome-guide/student-residence-permit/index.html +++ b/mk/student-welcome-guide/student-residence-permit/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/student-transport/index.html b/mk/student-welcome-guide/student-transport/index.html index 32439eea..c850e594 100644 --- a/mk/student-welcome-guide/student-transport/index.html +++ b/mk/student-welcome-guide/student-transport/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/student-work/index.html b/mk/student-welcome-guide/student-work/index.html index d9a75c58..13f8e827 100644 --- a/mk/student-welcome-guide/student-work/index.html +++ b/mk/student-welcome-guide/student-work/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/study-cities/index.html b/mk/student-welcome-guide/study-cities/index.html index 60aba65f..2adaa20a 100644 --- a/mk/student-welcome-guide/study-cities/index.html +++ b/mk/student-welcome-guide/study-cities/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/tuition-and-scholarships/index.html b/mk/student-welcome-guide/tuition-and-scholarships/index.html index 7f2b4b92..a52e351c 100644 --- a/mk/student-welcome-guide/tuition-and-scholarships/index.html +++ b/mk/student-welcome-guide/tuition-and-scholarships/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 a9e13ef7..2a9995be 100644 --- a/mk/student-welcome-guide/visa-and-residence-explained/index.html +++ b/mk/student-welcome-guide/visa-and-residence-explained/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/mk/student-welcome-guide/wellbeing-and-community/index.html b/mk/student-welcome-guide/wellbeing-and-community/index.html index 8153cff6..bb246f42 100644 --- a/mk/student-welcome-guide/wellbeing-and-community/index.html +++ b/mk/student-welcome-guide/wellbeing-and-community/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 7aabdb76..9ec7e22a 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/news-filter.js b/news-filter.js new file mode 100644 index 00000000..6493eab4 --- /dev/null +++ b/news-filter.js @@ -0,0 +1,19 @@ +/* News hub type filter: chips toggle which cards are shown. No dependencies. */ +(function () { + var list = document.querySelector('.newshub-list'); + if (!list) return; + var chips = list.querySelectorAll('.newshub-chip'); + var cards = list.querySelectorAll('.newshub-card'); + function apply(type) { + cards.forEach(function (card) { + card.hidden = !(type === 'all' || card.getAttribute('data-type') === type); + }); + } + chips.forEach(function (chip) { + chip.addEventListener('click', function () { + chips.forEach(function (c) { c.classList.remove('is-active'); }); + chip.classList.add('is-active'); + apply(chip.getAttribute('data-type')); + }); + }); +})(); diff --git a/si/blog/index.html b/si/blog/index.html index 68db0aff..ba324e94 100644 --- a/si/blog/index.html +++ b/si/blog/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/cookie-policy/index.html b/si/cookie-policy/index.html index e9f0e19d..1047f339 100644 --- a/si/cookie-policy/index.html +++ b/si/cookie-policy/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/faq/index.html b/si/faq/index.html index bf1b4119..da870ca9 100644 --- a/si/faq/index.html +++ b/si/faq/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 a98d3b05..4e092946 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 b1937722..50eba99f 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/get-to-know-macedonia/index.html b/si/get-to-know-macedonia/index.html index 23fe0017..b4f646a8 100644 --- a/si/get-to-know-macedonia/index.html +++ b/si/get-to-know-macedonia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 12718263..2a0a41ee 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 2a0b6571..eb36c263 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 c3437e98..691adc9a 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 073cb94e..66c5479f 100644 --- a/si/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/si/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 832218c7..440e085f 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/get-to-know-slovenia/index.html b/si/get-to-know-slovenia/index.html index d81806d1..5659ebaf 100644 --- a/si/get-to-know-slovenia/index.html +++ b/si/get-to-know-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 0e717c32..f955c3fa 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 a1af098d..e6293e33 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 20b4e3b0..81701f76 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 328174ae..c56077ab 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 adbf69e2..29d4705b 100644 --- a/si/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/si/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/index.html b/si/index.html index b8c02789..0883d783 100644 --- a/si/index.html +++ b/si/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ @@ -261,38 +261,44 @@
-
+
-

Zadnje novice

-

Don’t miss what’s happening! Here you’ll find all our updates, from student news to upcoming activities and community highlights.

+

Najnovejše novice

+

Kaj je novega pri MSOS, od dogodkov in projektov do blog zgodb in obvestil.

-
- Roza in modro obarvana podoba zasneženega vrha gore + -
- + Poglej vse
diff --git a/si/news/index.html b/si/news/index.html new file mode 100644 index 00000000..dc80dbad --- /dev/null +++ b/si/news/index.html @@ -0,0 +1,415 @@ + + + + + + Novice in obvestila - MSOS + + + + + + + + + + + + + + + + + + + + + +
+
+
+

Izberi jezik

+ +
+ +
+
+ + +
+
+ Novice +

Novice in obvestila

+

Vse novo pri MSOS na enem mestu: dogodki in projekti, blog zgodbe in obvestila.

+
+
+
+ + + + +
+
+ + + + + + + + + + + + + + + +
+
+
+ + + + + + + + diff --git a/si/privacy-policy/index.html b/si/privacy-policy/index.html index b158f77d..f6d273f8 100644 --- a/si/privacy-policy/index.html +++ b/si/privacy-policy/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/projects/humanitarian-tournament-in-maribor/index.html b/si/projects/humanitarian-tournament-in-maribor/index.html index e0649c43..f53683f2 100644 --- a/si/projects/humanitarian-tournament-in-maribor/index.html +++ b/si/projects/humanitarian-tournament-in-maribor/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/projects/in-memory-of-frosina-kulakova/index.html b/si/projects/in-memory-of-frosina-kulakova/index.html index 881b39c9..48c1a687 100644 --- a/si/projects/in-memory-of-frosina-kulakova/index.html +++ b/si/projects/in-memory-of-frosina-kulakova/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 7b056659..47cac2b3 100644 --- a/si/projects/in-memory-of-the-kochani-victims/index.html +++ b/si/projects/in-memory-of-the-kochani-victims/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/projects/index.html b/si/projects/index.html index 85ce4a34..505bcff8 100644 --- a/si/projects/index.html +++ b/si/projects/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/projects/macedonian-student-night-in-ljubljana/index.html b/si/projects/macedonian-student-night-in-ljubljana/index.html index 463e64f1..6cc096a5 100644 --- a/si/projects/macedonian-student-night-in-ljubljana/index.html +++ b/si/projects/macedonian-student-night-in-ljubljana/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/projects/meet-student-slovenia-2023/index.html b/si/projects/meet-student-slovenia-2023/index.html index 4e93244d..96980d25 100644 --- a/si/projects/meet-student-slovenia-2023/index.html +++ b/si/projects/meet-student-slovenia-2023/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/projects/meet-student-slovenia-2024/index.html b/si/projects/meet-student-slovenia-2024/index.html index 01a3fa3e..7775ae33 100644 --- a/si/projects/meet-student-slovenia-2024/index.html +++ b/si/projects/meet-student-slovenia-2024/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 96f9293b..775e6c60 100644 --- a/si/projects/morning-coffee-in-front-of-ctk/index.html +++ b/si/projects/morning-coffee-in-front-of-ctk/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/projects/paint-and-wine-at-sunset/index.html b/si/projects/paint-and-wine-at-sunset/index.html index f9300470..0fb036df 100644 --- a/si/projects/paint-and-wine-at-sunset/index.html +++ b/si/projects/paint-and-wine-at-sunset/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/projects/watching-handball-together-in-slovenia/index.html b/si/projects/watching-handball-together-in-slovenia/index.html index 3b4b5163..936dadcb 100644 --- a/si/projects/watching-handball-together-in-slovenia/index.html +++ b/si/projects/watching-handball-together-in-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/academic-life/index.html b/si/student-welcome-guide/academic-life/index.html index a66c4e44..4da2ddc9 100644 --- a/si/student-welcome-guide/academic-life/index.html +++ b/si/student-welcome-guide/academic-life/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/administrative-basics/index.html b/si/student-welcome-guide/administrative-basics/index.html index 25a28f02..9feaed2d 100644 --- a/si/student-welcome-guide/administrative-basics/index.html +++ b/si/student-welcome-guide/administrative-basics/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/admission-and-enrolment/index.html b/si/student-welcome-guide/admission-and-enrolment/index.html index 4229cf45..28ea4dd3 100644 --- a/si/student-welcome-guide/admission-and-enrolment/index.html +++ b/si/student-welcome-guide/admission-and-enrolment/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/application-deadlines/index.html b/si/student-welcome-guide/application-deadlines/index.html index be98224b..73b8bf2c 100644 --- a/si/student-welcome-guide/application-deadlines/index.html +++ b/si/student-welcome-guide/application-deadlines/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/arrival-checklist/index.html b/si/student-welcome-guide/arrival-checklist/index.html index 9556602a..ae4b73a5 100644 --- a/si/student-welcome-guide/arrival-checklist/index.html +++ b/si/student-welcome-guide/arrival-checklist/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/bachelor-application/index.html b/si/student-welcome-guide/bachelor-application/index.html index bd942b63..0eb14ba0 100644 --- a/si/student-welcome-guide/bachelor-application/index.html +++ b/si/student-welcome-guide/bachelor-application/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/choose-a-programme/index.html b/si/student-welcome-guide/choose-a-programme/index.html index 6388fb09..01c4dc4f 100644 --- a/si/student-welcome-guide/choose-a-programme/index.html +++ b/si/student-welcome-guide/choose-a-programme/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/complete-student-journey/index.html b/si/student-welcome-guide/complete-student-journey/index.html index 760b41e2..15243712 100644 --- a/si/student-welcome-guide/complete-student-journey/index.html +++ b/si/student-welcome-guide/complete-student-journey/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/document-preparation/index.html b/si/student-welcome-guide/document-preparation/index.html index ffb32ca1..96420567 100644 --- a/si/student-welcome-guide/document-preparation/index.html +++ b/si/student-welcome-guide/document-preparation/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/evs-application-guide/index.html b/si/student-welcome-guide/evs-application-guide/index.html index 48102b38..231a5360 100644 --- a/si/student-welcome-guide/evs-application-guide/index.html +++ b/si/student-welcome-guide/evs-application-guide/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/healthcare-in-slovenia/index.html b/si/student-welcome-guide/healthcare-in-slovenia/index.html index de1fde74..92d91dca 100644 --- a/si/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/si/student-welcome-guide/healthcare-in-slovenia/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/index.html b/si/student-welcome-guide/index.html index b45e3e41..41e0dd11 100644 --- a/si/student-welcome-guide/index.html +++ b/si/student-welcome-guide/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/master-application/index.html b/si/student-welcome-guide/master-application/index.html index a89b7f63..da8257a6 100644 --- a/si/student-welcome-guide/master-application/index.html +++ b/si/student-welcome-guide/master-application/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/means-accommodation-address/index.html b/si/student-welcome-guide/means-accommodation-address/index.html index 54abc182..3143c507 100644 --- a/si/student-welcome-guide/means-accommodation-address/index.html +++ b/si/student-welcome-guide/means-accommodation-address/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/my-route/index.html b/si/student-welcome-guide/my-route/index.html index af65c728..09f7d16e 100644 --- a/si/student-welcome-guide/my-route/index.html +++ b/si/student-welcome-guide/my-route/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 7a1e0d41..a430e44b 100644 --- a/si/student-welcome-guide/official-sources-and-checklists/index.html +++ b/si/student-welcome-guide/official-sources-and-checklists/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/prepare-to-move/index.html b/si/student-welcome-guide/prepare-to-move/index.html index e5b8d21c..f93adfe6 100644 --- a/si/student-welcome-guide/prepare-to-move/index.html +++ b/si/student-welcome-guide/prepare-to-move/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/recognition-of-education/index.html b/si/student-welcome-guide/recognition-of-education/index.html index 0215a107..c7f4fdaf 100644 --- a/si/student-welcome-guide/recognition-of-education/index.html +++ b/si/student-welcome-guide/recognition-of-education/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/renew-change-graduate/index.html b/si/student-welcome-guide/renew-change-graduate/index.html index b5e3c8ce..91da11d1 100644 --- a/si/student-welcome-guide/renew-change-graduate/index.html +++ b/si/student-welcome-guide/renew-change-graduate/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 0e18f3ab..9d6cd8cf 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/student-accommodation/index.html b/si/student-welcome-guide/student-accommodation/index.html index 080aa5e1..40a1bebc 100644 --- a/si/student-welcome-guide/student-accommodation/index.html +++ b/si/student-welcome-guide/student-accommodation/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/student-budget/index.html b/si/student-welcome-guide/student-budget/index.html index 4c993d98..8c0fca22 100644 --- a/si/student-welcome-guide/student-budget/index.html +++ b/si/student-welcome-guide/student-budget/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/student-meals/index.html b/si/student-welcome-guide/student-meals/index.html index 3253cf71..19d4ef72 100644 --- a/si/student-welcome-guide/student-meals/index.html +++ b/si/student-welcome-guide/student-meals/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 a4b0c65b..af9bea9e 100644 --- a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/student-residence-permit/index.html b/si/student-welcome-guide/student-residence-permit/index.html index 3673e130..e8d51f30 100644 --- a/si/student-welcome-guide/student-residence-permit/index.html +++ b/si/student-welcome-guide/student-residence-permit/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/student-transport/index.html b/si/student-welcome-guide/student-transport/index.html index 1d87d667..0abcc0d6 100644 --- a/si/student-welcome-guide/student-transport/index.html +++ b/si/student-welcome-guide/student-transport/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/student-work/index.html b/si/student-welcome-guide/student-work/index.html index f67ac4fb..197272f8 100644 --- a/si/student-welcome-guide/student-work/index.html +++ b/si/student-welcome-guide/student-work/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/study-cities/index.html b/si/student-welcome-guide/study-cities/index.html index 6ad752ca..67809ddd 100644 --- a/si/student-welcome-guide/study-cities/index.html +++ b/si/student-welcome-guide/study-cities/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/tuition-and-scholarships/index.html b/si/student-welcome-guide/tuition-and-scholarships/index.html index 3b284412..770bb233 100644 --- a/si/student-welcome-guide/tuition-and-scholarships/index.html +++ b/si/student-welcome-guide/tuition-and-scholarships/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 d810b8ae..c2c19f3d 100644 --- a/si/student-welcome-guide/visa-and-residence-explained/index.html +++ b/si/student-welcome-guide/visa-and-residence-explained/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ diff --git a/si/student-welcome-guide/wellbeing-and-community/index.html b/si/student-welcome-guide/wellbeing-and-community/index.html index 49f7689b..4929fce6 100644 --- a/si/student-welcome-guide/wellbeing-and-community/index.html +++ b/si/student-welcome-guide/wellbeing-and-community/index.html @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@ 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 6abd621a..a8194750 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 @@ -64,7 +64,7 @@ @@ -134,7 +134,7 @@