style(qa3): design-token foundation + safe polish/a11y fixes
Deploy to Production on Develop Push / deploy (push) Successful in 20s
Details
Deploy to Production on Develop Push / deploy (push) Successful in 20s
Details
- Add :root design tokens in _typography.css (was empty) — brand teal/orange, ink/text greys, radius + type scale + section rhythm. Visually neutral; new rules can reference var()s instead of scattered literals. - a11y: visible :focus-visible ring on header nav + dropdown links (keyboard users had none). - Fix synthesized faux-bold: .route-report h1 800 -> 700 (Inter loads 400-700). - Testimonials column: overflow-y scroll -> auto (no permanent scrollbar gutter). - Lightbox image radius 6px -> 8px (matches the site rounding scale). - Consistent card affordance: homepage .news-card now lifts on hover like the news-hub / blog cards. - Re-stamped cache-bust (v=1f64b22f). Deferred (needs a brand decision): unifying the two primary oranges (#FA7850 vs #F2762E) and the fuller literal->token migration. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
0052b38c1c
commit
fd9df42995
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=6770822f">
|
||||
<link rel="stylesheet" href="/css/main.css?v=1f64b22f">
|
||||
|
||||
<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=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,50 @@
|
|||
/* ==========================================================================
|
||||
Design tokens
|
||||
--------------------------------------------------------------------------
|
||||
Single source of truth for values previously hard-coded as literals across
|
||||
the stylesheets (e.g. #2D738C ~98×, #101828 ~103×). New/refactored rules
|
||||
should reference these instead of raw hex. Values match the existing
|
||||
dominant usages, so introducing this file is visually neutral — migrating
|
||||
older literals to var() can happen incrementally.
|
||||
========================================================================== */
|
||||
:root {
|
||||
/* Brand — teal */
|
||||
--teal: #2D738C;
|
||||
--teal-600: #255E73; /* button hover */
|
||||
--teal-800: #153C4E; /* deep accents */
|
||||
|
||||
/* Brand — orange. NOTE: the site currently ships two primary oranges:
|
||||
--orange (event pages / logo family) and --orange-cta (homepage buttons).
|
||||
They read as slightly different brands side by side; unify on one once the
|
||||
canonical value is confirmed. */
|
||||
--orange: #F2762E;
|
||||
--orange-600: #E85D2A;
|
||||
--orange-cta: #FA7850;
|
||||
--orange-text: #B4531A; /* AA-safe orange for text on white */
|
||||
|
||||
/* Ink / text */
|
||||
--ink: #101828;
|
||||
--text: #344054;
|
||||
--muted: #475467;
|
||||
--muted-2: #667085; /* smallest muted text that still meets AA on white */
|
||||
|
||||
/* Surfaces / lines */
|
||||
--bg: #F9FAFB;
|
||||
--line: #EAECF0;
|
||||
--line-2: #E4E7EC;
|
||||
|
||||
/* Radius scale */
|
||||
--r-sm: 8px;
|
||||
--r-md: 12px;
|
||||
--r-lg: 16px;
|
||||
--r-pill: 999px;
|
||||
|
||||
/* Type scale (available for future heading normalisation) */
|
||||
--fs-h1: 60px;
|
||||
--fs-h2: 36px;
|
||||
--fs-h3: 22px;
|
||||
--fs-body: 16px;
|
||||
|
||||
/* Section vertical rhythm */
|
||||
--space-section: 112px;
|
||||
}
|
||||
|
|
@ -30,6 +30,10 @@
|
|||
.news-card .card-content {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
/* Match the hover lift used by news-hub / blog cards for a consistent
|
||||
"this is clickable" cue. */
|
||||
.news-card-media { transition: transform 0.18s ease, box-shadow 0.18s ease; }
|
||||
.news-card:hover .news-card-media { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(9, 18, 26, 0.34); }
|
||||
|
||||
.news-card .author {
|
||||
font-size: 14px;
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.lightbox.is-open { display: flex; }
|
||||
.lightbox-img {
|
||||
max-width: 92vw; max-height: 82vh; object-fit: contain;
|
||||
border-radius: 6px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
||||
user-select: none; -webkit-user-drag: none;
|
||||
}
|
||||
.lightbox-close, .lightbox-prev, .lightbox-next {
|
||||
|
|
|
|||
|
|
@ -95,6 +95,12 @@
|
|||
.navigation > .menu-item > a:hover {
|
||||
color: #101828;
|
||||
}
|
||||
.navigation > .menu-item > a:focus-visible {
|
||||
outline: 2px solid var(--teal);
|
||||
outline-offset: 3px;
|
||||
border-radius: 4px;
|
||||
color: #101828;
|
||||
}
|
||||
|
||||
/* Poudarjanje aktivne strani na namizju */
|
||||
.navigation .menu-item.active-page > a {
|
||||
|
|
@ -237,9 +243,11 @@
|
|||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.dropdown-menu a:hover {
|
||||
.dropdown-menu a:hover,
|
||||
.dropdown-menu a:focus-visible {
|
||||
background-color: #F9FAFB;
|
||||
color: #2D738C;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.mobile-menu-icon, .mobile-nav-panel {
|
||||
|
|
|
|||
50
css/main.css
50
css/main.css
|
|
@ -15,36 +15,36 @@
|
|||
*/
|
||||
|
||||
/* 1. Base Styles */
|
||||
@import 'base/_base.css?v=6770822f';
|
||||
@import 'base/_typography.css?v=6770822f';
|
||||
@import 'base/_base.css?v=1f64b22f';
|
||||
@import 'base/_typography.css?v=1f64b22f';
|
||||
|
||||
/* 2. Layout Components */
|
||||
@import 'layout/_header.css?v=6770822f';
|
||||
@import 'layout/_footer.css?v=6770822f';
|
||||
@import 'layout/_header.css?v=1f64b22f';
|
||||
@import 'layout/_footer.css?v=1f64b22f';
|
||||
|
||||
/* 3. Reusable Components */
|
||||
@import 'components/_buttons.css?v=6770822f';
|
||||
@import 'components/_cards.css?v=6770822f';
|
||||
@import 'components/_lang-banner.css?v=6770822f';
|
||||
@import 'components/_lightbox.css?v=6770822f';
|
||||
@import 'components/_buttons.css?v=1f64b22f';
|
||||
@import 'components/_cards.css?v=1f64b22f';
|
||||
@import 'components/_lang-banner.css?v=1f64b22f';
|
||||
@import 'components/_lightbox.css?v=1f64b22f';
|
||||
|
||||
/* 4. Page-specific Styles */
|
||||
@import 'pages/_home.css?v=6770822f';
|
||||
@import 'pages/_projects.css?v=6770822f';
|
||||
@import 'pages/_article.css?v=6770822f';
|
||||
@import 'pages/_about.css?v=6770822f';
|
||||
@import 'pages/_timeline.css?v=6770822f';
|
||||
@import 'pages/_guide.css?v=6770822f';
|
||||
@import 'pages/_faq.css?v=6770822f';
|
||||
@import 'pages/_blog.css?v=6770822f';
|
||||
@import 'pages/_news.css?v=6770822f';
|
||||
@import 'pages/_member.css?v=6770822f';
|
||||
@import 'pages/_support.css?v=6770822f';
|
||||
@import 'pages/_hub.css?v=6770822f';
|
||||
@import 'pages/_legal.css?v=6770822f';
|
||||
@import 'pages/_gallery.css?v=6770822f';
|
||||
@import 'pages/_press.css?v=6770822f';
|
||||
@import 'pages/_event.css?v=6770822f';
|
||||
@import 'pages/_home.css?v=1f64b22f';
|
||||
@import 'pages/_projects.css?v=1f64b22f';
|
||||
@import 'pages/_article.css?v=1f64b22f';
|
||||
@import 'pages/_about.css?v=1f64b22f';
|
||||
@import 'pages/_timeline.css?v=1f64b22f';
|
||||
@import 'pages/_guide.css?v=1f64b22f';
|
||||
@import 'pages/_faq.css?v=1f64b22f';
|
||||
@import 'pages/_blog.css?v=1f64b22f';
|
||||
@import 'pages/_news.css?v=1f64b22f';
|
||||
@import 'pages/_member.css?v=1f64b22f';
|
||||
@import 'pages/_support.css?v=1f64b22f';
|
||||
@import 'pages/_hub.css?v=1f64b22f';
|
||||
@import 'pages/_legal.css?v=1f64b22f';
|
||||
@import 'pages/_gallery.css?v=1f64b22f';
|
||||
@import 'pages/_press.css?v=1f64b22f';
|
||||
@import 'pages/_event.css?v=1f64b22f';
|
||||
|
||||
/* Loaded last so the shared filter bar wins over per-page chip styles. */
|
||||
@import 'pages/_filterbar.css?v=6770822f';
|
||||
@import 'pages/_filterbar.css?v=1f64b22f';
|
||||
|
|
@ -937,7 +937,7 @@
|
|||
border-bottom: 2px solid #F2F4F7;
|
||||
}
|
||||
.route-report-logo { height: 46px; width: auto; }
|
||||
.route-report h1 { font-size: 27px; font-weight: 800; letter-spacing: -.02em; margin: 0; color: #101828; }
|
||||
.route-report h1 { font-size: 27px; font-weight: 700; letter-spacing: -.02em; margin: 0; color: #101828; } /* 700: Inter loads 400-700; 800 was synthesized */
|
||||
.route-report-date { margin: 6px 0 0; font-size: 13px; color: #667085; }
|
||||
.route-report-intro { color: #475467; line-height: 25px; margin: 0 0 8px; }
|
||||
.route-report h2 { font-size: 17px; color: #101828; margin: 24px 0 10px; }
|
||||
|
|
|
|||
|
|
@ -437,7 +437,7 @@
|
|||
gap: 24px;
|
||||
width: 846px;
|
||||
height: 800px;
|
||||
overflow-y: scroll;
|
||||
overflow-y: auto; /* was scroll — no permanent scrollbar gutter when content fits */
|
||||
padding-right: 15px;
|
||||
}
|
||||
.testimonials-columns::-webkit-scrollbar {
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -572,8 +572,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -624,10 +624,10 @@
|
|||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<script src="../../member-form.js?v=6770822f"></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../member-form.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -444,9 +444,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -348,9 +348,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -422,9 +422,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -434,11 +434,11 @@
|
|||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
<script src="../../blog-filter.js?v=6770822f"></script>
|
||||
<script src="../../blog-filter.js?v=1f64b22f"></script>
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<script src="../../filter-search.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../filter-search.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -381,9 +381,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -393,9 +393,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -384,9 +384,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -437,9 +437,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -322,8 +322,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -539,7 +539,7 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -648,8 +648,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -399,8 +399,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -405,8 +405,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -372,8 +372,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -405,8 +405,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -397,8 +397,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -387,8 +387,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -384,8 +384,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -389,8 +389,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -372,8 +372,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -385,8 +385,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -379,8 +379,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -406,8 +406,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -391,8 +391,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -362,8 +362,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../css/main.css?v=1f64b22f">
|
||||
<link rel="preload" as="image" href="../images/HeroSection-img1.webp">
|
||||
</head>
|
||||
<body>
|
||||
|
|
@ -552,8 +552,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -317,8 +317,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -412,8 +412,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -576,11 +576,11 @@
|
|||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<script src="../../news-filter.js?v=6770822f"></script>
|
||||
<script src="../../filter-search.js?v=6770822f"></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../news-filter.js?v=1f64b22f"></script>
|
||||
<script src="../../filter-search.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -429,10 +429,10 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../event-register.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../event-register.js?v=1f64b22f" defer></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -302,9 +302,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -459,7 +459,7 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -368,8 +368,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -403,8 +403,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -341,8 +341,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -349,8 +349,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -511,9 +511,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<script src="../../filter-search.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../filter-search.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -379,8 +379,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -405,8 +405,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -419,8 +419,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -444,8 +444,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -443,8 +443,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -399,8 +399,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -408,8 +408,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -388,8 +388,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -402,8 +402,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -375,8 +375,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -412,8 +412,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -379,8 +379,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -388,8 +388,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -366,9 +366,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -354,9 +354,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -364,9 +364,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -361,9 +361,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -379,9 +379,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -391,9 +391,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -382,9 +382,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -407,9 +407,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -356,9 +356,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -374,9 +374,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -417,9 +417,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -525,10 +525,10 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<script src="../../student-guide.js?v=6770822f"></script>
|
||||
<script src="../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../student-guide.js?v=1f64b22f"></script>
|
||||
<script src="../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -368,9 +368,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -440,9 +440,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="sr-only">Your personal study route</h1>
|
||||
|
|
@ -268,9 +268,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../my-route.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../my-route.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -385,9 +385,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -412,9 +412,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -357,9 +357,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -366,9 +366,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -406,9 +406,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -407,9 +407,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -376,9 +376,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -364,9 +364,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -401,9 +401,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -418,9 +418,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -385,9 +385,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -359,9 +359,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -419,9 +419,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -363,9 +363,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -390,9 +390,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -355,9 +355,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -425,9 +425,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../guide-feedback.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../../guide-feedback.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -596,9 +596,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<script src="../../member-form.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../member-form.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -511,8 +511,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -572,8 +572,8 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -624,10 +624,10 @@
|
|||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<script src="../../member-form.js?v=6770822f"></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../member-form.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -444,9 +444,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -348,9 +348,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -422,9 +422,9 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js?v=6770822f"></script>
|
||||
<script src="../../../main.js?v=1f64b22f"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js?v=6770822f" defer></script>
|
||||
<script src="/consent.js?v=1f64b22f" 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=6770822f">
|
||||
<link rel="stylesheet" href="../../css/main.css?v=1f64b22f">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -434,11 +434,11 @@
|
|||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
<script src="../../blog-filter.js?v=6770822f"></script>
|
||||
<script src="../../blog-filter.js?v=1f64b22f"></script>
|
||||
|
||||
<script src="../../main.js?v=6770822f"></script>
|
||||
<script src="../../filter-search.js?v=6770822f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=6770822f">
|
||||
<script src="/assistant.js?v=6770822f" defer></script>
|
||||
<script src="../../main.js?v=1f64b22f"></script>
|
||||
<script src="../../filter-search.js?v=1f64b22f"></script>
|
||||
<link rel="stylesheet" href="/assistant.css?v=1f64b22f">
|
||||
<script src="/assistant.js?v=1f64b22f" 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