fix(qa): SI hero copy, footer width, form contrast + iOS input-zoom
Deploy to Production on Develop Push / deploy (push) Successful in 21s
Details
Deploy to Production on Develop Push / deploy (push) Successful in 21s
Details
From the QA audit — high-impact, low-risk fixes:
- SI homepage hero: replace leftover template boilerplate subtitle
("timski nabiralniki"...) and truncated badge with proper Slovene copy
matching EN/MK.
- Footer: .footer-container was a hard width:1280px and got clipped by
overflow-x:clip on 769-1279px screens; now width:100%; max-width:1280px.
- WCAG AA contrast: darken orange text (.article-publish-date, .mm-real-link)
and the Ask-MSOS footer (.msa-foot) which were ~2.6-3:1 on white.
- iOS Safari focus-zoom: bump form/search/assistant inputs to 16px
(.ms-field, .msa-input, .filterbar-search-field).
- Re-stamped cache-bust (v=9ff60d7a).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
954f186761
commit
c5bdb59a92
6
404.html
6
404.html
|
|
@ -25,7 +25,7 @@
|
|||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer">
|
||||
<link rel="stylesheet" href="/css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="/css/main.css?v=9ff60d7a">
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
|
|
@ -70,7 +70,7 @@
|
|||
</p>
|
||||
</div>
|
||||
</main>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@
|
|||
.msa-form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid #eceff0; background: #fff; }
|
||||
.msa-input {
|
||||
flex: 1; border: 1px solid #d6dcde; border-radius: 10px;
|
||||
padding: 10px 12px; font-size: 14.5px; font-family: inherit; color: var(--msa-text);
|
||||
padding: 10px 12px; font-size: 16px; font-family: inherit; color: var(--msa-text); /* 16px avoids iOS Safari focus-zoom */
|
||||
}
|
||||
.msa-input:focus { outline: 2px solid var(--msa-accent); outline-offset: -1px; border-color: var(--msa-accent); }
|
||||
.msa-send {
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
width: 44px; cursor: pointer; font-size: 16px;
|
||||
}
|
||||
.msa-send:hover { background: var(--msa-accent-dark); }
|
||||
.msa-foot { margin: 0; padding: 8px 12px; font-size: 11.5px; color: #8a979d; background: #fff; text-align: center; }
|
||||
.msa-foot { margin: 0; padding: 8px 12px; font-size: 11.5px; color: #5a6b72; background: #fff; text-align: center; } /* was #8a979d (3.0:1) — darkened for WCAG AA */
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.msa-root { right: 12px; bottom: 12px; }
|
||||
|
|
|
|||
|
|
@ -21,8 +21,10 @@ footer {
|
|||
}
|
||||
|
||||
.footer-container {
|
||||
width: 1280px;
|
||||
width: 100%;
|
||||
max-width: 1280px;
|
||||
margin: 0 auto;
|
||||
padding: 0 24px;
|
||||
}
|
||||
|
||||
.footer-main {
|
||||
|
|
|
|||
50
css/main.css
50
css/main.css
|
|
@ -15,36 +15,36 @@
|
|||
*/
|
||||
|
||||
/* 1. Base Styles */
|
||||
@import 'base/_base.css?v=64a53dd6';
|
||||
@import 'base/_typography.css?v=64a53dd6';
|
||||
@import 'base/_base.css?v=9ff60d7a';
|
||||
@import 'base/_typography.css?v=9ff60d7a';
|
||||
|
||||
/* 2. Layout Components */
|
||||
@import 'layout/_header.css?v=64a53dd6';
|
||||
@import 'layout/_footer.css?v=64a53dd6';
|
||||
@import 'layout/_header.css?v=9ff60d7a';
|
||||
@import 'layout/_footer.css?v=9ff60d7a';
|
||||
|
||||
/* 3. Reusable Components */
|
||||
@import 'components/_buttons.css?v=64a53dd6';
|
||||
@import 'components/_cards.css?v=64a53dd6';
|
||||
@import 'components/_lang-banner.css?v=64a53dd6';
|
||||
@import 'components/_lightbox.css?v=64a53dd6';
|
||||
@import 'components/_buttons.css?v=9ff60d7a';
|
||||
@import 'components/_cards.css?v=9ff60d7a';
|
||||
@import 'components/_lang-banner.css?v=9ff60d7a';
|
||||
@import 'components/_lightbox.css?v=9ff60d7a';
|
||||
|
||||
/* 4. Page-specific Styles */
|
||||
@import 'pages/_home.css?v=64a53dd6';
|
||||
@import 'pages/_projects.css?v=64a53dd6';
|
||||
@import 'pages/_article.css?v=64a53dd6';
|
||||
@import 'pages/_about.css?v=64a53dd6';
|
||||
@import 'pages/_timeline.css?v=64a53dd6';
|
||||
@import 'pages/_guide.css?v=64a53dd6';
|
||||
@import 'pages/_faq.css?v=64a53dd6';
|
||||
@import 'pages/_blog.css?v=64a53dd6';
|
||||
@import 'pages/_news.css?v=64a53dd6';
|
||||
@import 'pages/_member.css?v=64a53dd6';
|
||||
@import 'pages/_support.css?v=64a53dd6';
|
||||
@import 'pages/_hub.css?v=64a53dd6';
|
||||
@import 'pages/_legal.css?v=64a53dd6';
|
||||
@import 'pages/_gallery.css?v=64a53dd6';
|
||||
@import 'pages/_press.css?v=64a53dd6';
|
||||
@import 'pages/_event.css?v=64a53dd6';
|
||||
@import 'pages/_home.css?v=9ff60d7a';
|
||||
@import 'pages/_projects.css?v=9ff60d7a';
|
||||
@import 'pages/_article.css?v=9ff60d7a';
|
||||
@import 'pages/_about.css?v=9ff60d7a';
|
||||
@import 'pages/_timeline.css?v=9ff60d7a';
|
||||
@import 'pages/_guide.css?v=9ff60d7a';
|
||||
@import 'pages/_faq.css?v=9ff60d7a';
|
||||
@import 'pages/_blog.css?v=9ff60d7a';
|
||||
@import 'pages/_news.css?v=9ff60d7a';
|
||||
@import 'pages/_member.css?v=9ff60d7a';
|
||||
@import 'pages/_support.css?v=9ff60d7a';
|
||||
@import 'pages/_hub.css?v=9ff60d7a';
|
||||
@import 'pages/_legal.css?v=9ff60d7a';
|
||||
@import 'pages/_gallery.css?v=9ff60d7a';
|
||||
@import 'pages/_press.css?v=9ff60d7a';
|
||||
@import 'pages/_event.css?v=9ff60d7a';
|
||||
|
||||
/* Loaded last so the shared filter bar wins over per-page chip styles. */
|
||||
@import 'pages/_filterbar.css?v=64a53dd6';
|
||||
@import 'pages/_filterbar.css?v=9ff60d7a';
|
||||
|
|
@ -228,7 +228,7 @@
|
|||
.article-publish-date {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: #FA7850;
|
||||
color: #B4531A; /* was #FA7850 (2.7:1) — darkened for WCAG AA on white */
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@
|
|||
outline: 0;
|
||||
background: transparent;
|
||||
font-family: inherit;
|
||||
font-size: 15px;
|
||||
font-size: 16px; /* 16px avoids iOS Safari focus-zoom */
|
||||
color: #101828;
|
||||
}
|
||||
.filterbar-search-field input::placeholder { color: #98A2B3; }
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@
|
|||
.mm-real-body { padding: 18px; }
|
||||
.mm-real-body h3 { font-size: 17px; margin: 0 0 6px; }
|
||||
.mm-real-body p { font-size: 14px; line-height: 21px; color: #667085; margin: 0 0 10px; }
|
||||
.mm-real-link { font-size: 14px; font-weight: 600; color: var(--mm-orange); display: inline-flex; align-items: center; gap: 6px; }
|
||||
.mm-real-link { font-size: 14px; font-weight: 600; color: #B4531A; display: inline-flex; align-items: center; gap: 6px; } /* was --mm-orange (2.8:1) — darkened for WCAG AA */
|
||||
|
||||
/* ---- testimonials ---- */
|
||||
.mm-tests { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
|
||||
|
|
@ -189,7 +189,7 @@
|
|||
.ms-field { display: flex; flex-direction: column; gap: 6px; }
|
||||
.ms-field span { font-size: 13px; font-weight: 600; color: #344054; }
|
||||
.ms-field input, .ms-field select, .ms-form textarea {
|
||||
font-family: inherit; font-size: 15px; color: #101828;
|
||||
font-family: inherit; font-size: 16px; color: #101828; /* 16px avoids iOS Safari focus-zoom */
|
||||
padding: 11px 14px; border: 1px solid #D0D5DD; border-radius: 10px; background: #FFFFFF; width: 100%;
|
||||
}
|
||||
.ms-field input:focus, .ms-field select:focus, .ms-form textarea:focus { outline: none; border-color: var(--mm-orange); box-shadow: 0 0 0 3px rgba(242,118,46,0.12); }
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Our shared values keep us connected and guide us as one team.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/about-us/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/about-us/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -572,8 +572,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Join MSOS and find your people in Slovenia. Meet students, attend events, get support and help create projects across the Macedonian student community.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/become-a-member/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/become-a-member/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -624,10 +624,10 @@
|
|||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../member-form.js?v=64a53dd6"></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../member-form.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Planning to continue your studies in Slovenia? Citizens of North Macedonia and several other Western Balkan countries can apply for an Ad futura scholarship…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/blog/ad-futura-scholarship-slovenia-2026/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/ad-futura-scholarship-slovenia-2026/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -444,9 +444,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Arriving at the end of your secondary education, with a modest eighteen years behind you, you have to decide where to continue your studies. Will you stay in…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/blog/how-i-coped-with-leaving-home/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/how-i-coped-with-leaving-home/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -348,9 +348,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="A practical guide for Macedonian students: the documents you need, how to choose a bank, using Flik, and keeping your details up to date after you open the account.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -422,9 +422,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Real experiences and practical advice from Macedonian students in Slovenia. New stories are on the way.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/blog/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -434,11 +434,11 @@
|
|||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
<script src="../../blog-filter.js?v=64a53dd6"></script>
|
||||
<script src="../../blog-filter.js?v=9ff60d7a"></script>
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../filter-search.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../filter-search.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Moving to Slovenia for your studies? You do not need to speak perfect Slovene before arriving, but learning the basics early will make university…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/blog/learning-slovene-where-to-start/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/learning-slovene-where-to-start/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -381,9 +381,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Are you a foreign citizen of Macedonian origin living in Slovenia or another eligible country? The Ministry of Education and Science of North Macedonia is…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -393,9 +393,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Starting university in another country is easier when you know where to go, who to ask, and what happens during the first days. Slovenia’s main universities…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/blog/welcome-days-slovenian-universities-2026-2027/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/welcome-days-slovenian-universities-2026-2027/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -384,9 +384,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Finding accommodation is often one of the most stressful parts of moving to Slovenia, especially in Ljubljana and on the coast. The best approach is to begin…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/blog/where-to-search-for-accommodation-in-slovenia/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/where-to-search-for-accommodation-in-slovenia/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -437,9 +437,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="How this website uses cookies and similar technologies, and how you can control them.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/cookie-policy/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/cookie-policy/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -322,8 +322,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Short answers to the questions Macedonian students ask most about studying and living in Slovenia — applications, residence, work, housing and more.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/faq/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/faq/">
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -539,7 +539,7 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="A look back at the events, gatherings and moments that make the MSOS community — browse photo albums from Macedonian student life in Slovenia.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/gallery/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/gallery/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -648,8 +648,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The food matters, but so do the order of the plates, the people around them, and the fact that nobody leaves after the first course.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -399,8 +399,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Stobi, Heraclea, Kokino, and Krusevo do not belong to the same century or tell the same story. That is exactly why they belong in the same journey.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -405,8 +405,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Macedonia is not only a place on the map. It is a table that always has room for one more person, music that brings everyone closer, mountains on the horizon…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -372,8 +372,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="In Macedonia, music is often not something performed in front of a room. It is what changes the room and brings people into the same rhythm.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -405,8 +405,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The lake attracts the first look. The old streets, wooden houses, churches, neighbourhoods, and evening conversations are what make people return.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -397,8 +397,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="A city best understood by crossing the river, changing neighbourhoods, and noticing what each period left behind.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -387,8 +387,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="A country of mountains, open tables, long conversations, and stories that remain close wherever we go.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -384,8 +384,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Start with štruklji, jota, žlikrofi, frika, bograč, and potica. Together they reveal a cuisine shaped by regions rather than one fixed menu.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -389,8 +389,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Slovenia may be small on the map, but there is a lot to discover between the Alps, the Adriatic coast, green rivers, old towns, and quiet places that quickly…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -372,8 +372,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The island is the image everyone knows. The full character of Bled appears when you walk around the lake and let the view keep changing.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -385,8 +385,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Not a complete guide to the city, but a collection of places and routines through which many of us began to feel at home.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -379,8 +379,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Not rules that describe every person, but small patterns many of us noticed while learning how everyday life works.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -406,8 +406,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Heritage is not one castle or museum. It can be a bridge used every day, a river disappearing underground, a mining town shaped by mercury, or knowledge passed…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -391,8 +391,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="A small country of many landscapes, quiet discoveries, and places that slowly begin to feel like home.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -362,8 +362,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The first official Macedonian student organisation in Slovenia — support, events, community and a voice for Macedonian students from application to graduation.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file (corrected path) -->
|
||||
<link rel="stylesheet" href="../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../css/main.css?v=9ff60d7a">
|
||||
<link rel="preload" as="image" href="../images/HeroSection-img1.webp">
|
||||
</head>
|
||||
<body>
|
||||
|
|
@ -552,8 +552,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<link rel="canonical" href="https://msosorg.com/en/legal/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/legal/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/legal/">
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -317,8 +317,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<link rel="canonical" href="https://msosorg.com/en/msos-hub/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/msos-hub/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/msos-hub/">
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -412,8 +412,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Everything new at MSOS in one place — events and projects, blog stories, announcements and official updates for Macedonian students in Slovenia.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/news/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -576,11 +576,11 @@
|
|||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../news-filter.js?v=64a53dd6"></script>
|
||||
<script src="../../filter-search.js?v=64a53dd6"></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../news-filter.js?v=9ff60d7a"></script>
|
||||
<script src="../../filter-search.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Future students and their parents talk directly with Macedonian students already studying in Slovenia. Meet Student Slovenia 2026 — 4 September in Skopje and online.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/news/meet-student-slovenia-2026/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/meet-student-slovenia-2026/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -429,10 +429,10 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../event-register.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../event-register.js?v=9ff60d7a" defer></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="If you are applying for or renewing a student residence permit in Slovenia, you must prove you have enough money to support yourself. That requirement is tied…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/news/proof-of-means-updated-2026/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/news/proof-of-means-updated-2026/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -302,9 +302,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<link rel="canonical" href="https://msosorg.com/en/press/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/press/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/press/">
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -459,7 +459,7 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="How the Macedonian Student Organisation in Slovenia collects, uses, and protects your personal data.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/privacy-policy/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/privacy-policy/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -368,8 +368,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Over 200 students gathered in Maribor, raising €1.000 through sport to support families hit by the Kočani tragedy.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -403,8 +403,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="On February 8, 2025, Macedonian students in Ljubljana gathered for a peaceful public event to honor the memory of Frosina Kulakova, who tragically lost her…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -341,8 +341,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="On March 21, 2025, more than 600 people gathered at Kongresni trg in Ljubljana for a peaceful public gathering to honor the victims of the tragic fire in Kochani.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -349,8 +349,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The events, projects and moments that bring the Macedonian student community in Slovenia together.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -511,9 +511,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../filter-search.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../filter-search.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Twenty-four students from six countries met in Ljubljana for the first shared activity of four student associations and joined the Path Around the Wire.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/joint-walk-path-around-the-wire/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/joint-walk-path-around-the-wire/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -379,8 +379,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Around 200 Serbian and Macedonian students filled AULA café for an evening of live music, shared tables, and a format MSOS had wanted to explore.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/kafanska-vecher-2025/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/kafanska-vecher-2025/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -405,8 +405,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="From an idea to a party with 500 students, that's how our story began!">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -419,8 +419,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Through honest first-hand stories, future students received support for their first step towards their new home.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/meet-student-slovenia-2023/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/meet-student-slovenia-2023/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -444,8 +444,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="When student stories turn into the first step towards a new home.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/meet-student-slovenia-2024/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/meet-student-slovenia-2024/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -443,8 +443,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Coffee, fruit, snacks, and a little breathing room in the middle of exam season.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk-2026/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk-2026/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -399,8 +399,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="When exams somehow become easier with Saturday morning coffee, burek, and good company in at CTK!">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file using the correct relative path -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -408,8 +408,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Paint, wine, and music brought students together in Gorizia to celebrate Women’s Day and mark the first MSOS Nova Gorica event.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/paint-and-wine-at-sunset/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/paint-and-wine-at-sunset/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -388,8 +388,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Students, professors, and representatives of the diplomatic community gathered at the Faculty of Law for a lecture on constitutional transformations and the…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/president-siljanovska-davkova-lecture-2026/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/president-siljanovska-davkova-lecture-2026/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -402,8 +402,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="An online session with the National Bank of the Republic of North Macedonia helped students and parents understand what SEPA means for everyday euro payments…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/sepa-webinar-2026/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/sepa-webinar-2026/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -375,8 +375,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="A half-day gathering with games, homemade food, conversations, and the first look at a new space created for the student community.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/teambuilding-hub-opening-2026/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/teambuilding-hub-opening-2026/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -412,8 +412,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="From Ljubljana to Maribor, Macedonian students filled cafés with chants, flags, and laughter while watching the national handball team.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/watching-handball-together-in-slovenia/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/watching-handball-together-in-slovenia/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -379,8 +379,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Forty five students gathered at Lepa Žoga to support Macedonia, meet one another, and test a format that can become a regular part of MSOS sports activities.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/projects/watching-macedonia-wales-football-match/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/projects/watching-macedonia-wales-football-match/">
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -388,8 +388,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The academic year, ECTS, grades, exam registration, the referat, learning Slovenian, tutoring, and extracurricular ECTS.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/academic-life/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/academic-life/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -366,9 +366,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="EMŠO, a tax number, SI-PASS, a bank account, and a phone plan unlock almost every other service.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/administrative-basics/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/administrative-basics/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -354,9 +354,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Admission is not always enrolment. Read the decision, complete enrolment, get your certificate of enrolment, and check any charges.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/admission-and-enrolment/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/admission-and-enrolment/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -364,9 +364,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The 2026/2027 bachelor and master periods for Macedonian citizens, by university. Always open the exact current call.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/application-deadlines/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/application-deadlines/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -361,9 +361,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="What to do in the first 72 hours, the first week, and the first month after you reach Slovenia.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/arrival-checklist/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/arrival-checklist/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -379,9 +379,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The eVŠ process, the document package, the 2026/2027 rounds by university, and why you should apply early.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/bachelor-application/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/bachelor-application/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -391,9 +391,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Compare the programme first, then the city. Use information days well, and confirm language and aptitude-test requirements early.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/choose-a-programme/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/choose-a-programme/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -382,9 +382,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Nine stages from researching a programme to your first year, with residence, health, and housing handled in parallel.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/complete-student-journey/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/complete-student-journey/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -407,9 +407,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="One master folder, clear filenames, the difference between original, copy, translation, and legalisation, and basic data protection.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/document-preparation/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/document-preparation/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -356,9 +356,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Prepare, log in, enter your previous education, order preferences, upload, and press Submit. A draft is not an application.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/evs-application-guide/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/evs-application-guide/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -374,9 +374,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Emergency numbers, what to bring, and student health contacts city by city.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/healthcare-in-slovenia/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/healthcare-in-slovenia/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -417,9 +417,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Your complete route from a Macedonian secondary school or first degree to enrolled student life in Slovenia.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -525,10 +525,10 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../student-guide.js?v=64a53dd6"></script>
|
||||
<script src="../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../student-guide.js?v=9ff60d7a"></script>
|
||||
<script src="../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Master admission is faculty-driven. Check field compatibility early, and remember there is no single national deadline.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/master-application/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/master-application/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -368,9 +368,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="How to prove sufficient means, accommodation, and a registered address for your residence permit.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/means-accommodation-address/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/means-accommodation-address/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -440,9 +440,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Your personal study route to Slovenia — follow the Student Welcome Guide steps for Macedonian students, from choosing a programme to enrolment and residence.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/my-route/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/my-route/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="sr-only">Your personal study route</h1>
|
||||
|
|
@ -268,9 +268,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../my-route.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../my-route.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The primary official links behind this guide, grouped by topic, and how to manage your sources.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/official-sources-and-checklists/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/official-sources-and-checklists/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -385,9 +385,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="A month-by-month plan, the documents to keep in your hand luggage, how to travel, and a detailed packing list.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/prepare-to-move/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/prepare-to-move/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -412,9 +412,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Recognition decides whether your prior education gives access to the Slovenian programme. For applicants educated abroad, it is part of admission.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/recognition-of-education/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/recognition-of-education/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -357,9 +357,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Annual renewal, repeat and transfer rights, losing status, the post-study route, and leaving Slovenia are all connected.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/renew-change-graduate/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/renew-change-graduate/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -366,9 +366,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="How the bilateral RM/SI 3 route gives you healthcare access in Slovenia, and what it does not cover.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/rm-si-3-health-insurance/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/rm-si-3-health-insurance/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -406,9 +406,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Subsidised public dorms are usually closed to you on temporary residence. Plan for economic-rate or private housing, and avoid scams.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-accommodation/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-accommodation/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -407,9 +407,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="There is no single national figure. Build a city-based budget, plan for a much larger first month, and use student discounts.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-budget/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-budget/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -376,9 +376,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Subsidised meals are open to eligible foreign degree students and exist across Slovenian study centres, not only in Ljubljana.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-meals/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-meals/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -364,9 +364,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Student organisations, student councils, local clubs, professional societies, university extracurricular programmes, ESN, and communities from home.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-organisations-and-extracurriculars/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-organisations-and-extracurriculars/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -401,9 +401,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The documents, the six steps, the one-year validity, and how to renew the temporary residence permit for study.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-residence-permit/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-residence-permit/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -418,9 +418,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="National IJPP tickets, city transport, and bicycle sharing. Eligibility does not depend on the distance to your faculty.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-transport/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-transport/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -385,9 +385,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Student work is allowed on the student permit through a napotnica. Regular employment is a different route that needs a work permit.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/student-work/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/student-work/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -359,9 +359,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Ljubljana is not the only option. Compare each Slovenian study centre and build your life around the real teaching location.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/study-cities/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/study-cities/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -419,9 +419,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Full-time public study is generally tuition-free for Macedonian citizens, but this is not a promise that every programme is free.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/tuition-and-scholarships/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/tuition-and-scholarships/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -363,9 +363,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Short visa-free entry, visa D, and the study residence permit are three different things. Know which one keeps you here legally.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/visa-and-residence-explained/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/visa-and-residence-explained/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -390,9 +390,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Culture shock is normal. Build support in several places, use university counselling, and know your emergency numbers.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/wellbeing-and-community/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/wellbeing-and-community/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -355,9 +355,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="The embassy in Skopje or a Slovenian administrative unit: where to submit, and the lawful-stay risk to manage.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/student-welcome-guide/where-to-apply-for-residence/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/student-welcome-guide/where-to-apply-for-residence/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -425,9 +425,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../guide-feedback.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../../guide-feedback.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<link rel="canonical" href="https://msosorg.com/en/support/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/support/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/support/">
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -596,9 +596,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../member-form.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../member-form.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Learn more about the company and the team behind it.">
|
||||
<link rel="canonical" href="https://msosorg.com/en/timeline-and-milestones/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/timeline-and-milestones/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -511,8 +511,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Нашите заеднички вредности нè држат поврзани и нè водат како еден тим.">
|
||||
<link rel="canonical" href="https://msosorg.com/mk/about-us/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/about-us/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -572,8 +572,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Придружете се на МСОС и најдете ги вашите луѓе во Словенија. Запознајте студенти, посетувајте настани, добијте поддршка и создавајте проекти во македонската студентска заедница.">
|
||||
<link rel="canonical" href="https://msosorg.com/mk/become-a-member/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/become-a-member/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Поврзување до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -624,10 +624,10 @@
|
|||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../member-form.js?v=64a53dd6"></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../member-form.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Планирате да ги продолжите студиите во Словенија? Државјаните на Северна Македонија и на уште неколку земји од Западен Балкан можат да аплицираат за стипендија…">
|
||||
<link rel="canonical" href="https://msosorg.com/mk/blog/ad-futura-scholarship-slovenia-2026/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/ad-futura-scholarship-slovenia-2026/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -444,9 +444,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Дојдени на крајот на вашето средно образование, со скромни 18 години позади вас треба да одлучите каде ќе го продолжите вашето образование. Дали ќе останете во…">
|
||||
<link rel="canonical" href="https://msosorg.com/mk/blog/how-i-coped-with-leaving-home/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/how-i-coped-with-leaving-home/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -348,9 +348,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Практичен водич за македонските студенти: документите што ви требаат, како да изберете банка, користење на Flik и ажурирање на вашите податоци откако ќе ја отворите сметката.">
|
||||
<link rel="canonical" href="https://msosorg.com/mk/blog/how-to-open-slovenian-bank-account/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -422,9 +422,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Вистински искуства и практични совети од македонски студенти во Словенија. Нови приказни се на пат.">
|
||||
<link rel="canonical" href="https://msosorg.com/mk/blog/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Поврзување до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -434,11 +434,11 @@
|
|||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
<script src="../../blog-filter.js?v=64a53dd6"></script>
|
||||
<script src="../../blog-filter.js?v=9ff60d7a"></script>
|
||||
|
||||
<script src="../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../filter-search.js?v=64a53dd6"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<script src="../../main.js?v=9ff60d7a"></script>
|
||||
<script src="../../filter-search.js?v=9ff60d7a"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=64a53dd6" defer></script>
|
||||
<script src="/consent.js?v=9ff60d7a" defer></script>
|
||||
<meta name="description" content="Се подготвувате да студирате во Словенија? Не мора да зборувате совршено словенечки пред да пристигнете, но ако ги научите основите навреме, многу полесно ќе…">
|
||||
<link rel="canonical" href="https://msosorg.com/mk/blog/learning-slovene-where-to-start/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/learning-slovene-where-to-start/">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=64a53dd6">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=9ff60d7a">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -381,9 +381,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=64a53dd6"></script>
|
||||
<script src="../../../main.js?v=9ff60d7a"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=64a53dd6">
|
||||
<script src="/assistant.js?v=64a53dd6" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=9ff60d7a">
|
||||
<script src="/assistant.js?v=9ff60d7a" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue