SEO foundation, analytics + consent, bank-account blog, MK/SI translations #7
|
|
@ -1 +1,3 @@
|
|||
.venv/
|
||||
images/original/
|
||||
.playwright-mcp/
|
||||
|
|
|
|||
52
.htaccess
|
|
@ -4,3 +4,55 @@ RewriteCond %{HTTP_HOST} ^msos\.spletnimojster\.si$ [OR]
|
|||
RewriteCond %{HTTP_HOST} ^www\.msos\.spletnimojster\.si$
|
||||
RewriteRule ^/?$ "https\:\/\/msos\.spletnimojster\.si\/en\/" [R=301,L]
|
||||
|
||||
|
||||
# ============================================================
|
||||
# Static-site defaults (added for SEO / performance / 404).
|
||||
# Wrapped in <IfModule> guards so a missing module can't 500.
|
||||
# Ignored by nginx (harmless). No extra HTTPS/host redirects —
|
||||
# the host handles TLS and the rule above handles the root.
|
||||
# ============================================================
|
||||
|
||||
# ----- Custom branded error page -----
|
||||
ErrorDocument 404 /404.html
|
||||
|
||||
# ----- Don't expose directory listings -----
|
||||
Options -Indexes
|
||||
|
||||
# ----- Correct MIME types (WebP, SVG, manifest, fonts) -----
|
||||
<IfModule mod_mime.c>
|
||||
AddType image/webp .webp
|
||||
AddType image/svg+xml .svg
|
||||
AddType application/manifest+json .webmanifest
|
||||
AddType image/x-icon .ico
|
||||
AddType font/woff2 .woff2
|
||||
</IfModule>
|
||||
|
||||
# ----- Gzip / compression for text assets -----
|
||||
<IfModule mod_deflate.c>
|
||||
AddOutputFilterByType DEFLATE text/html text/css text/plain text/xml
|
||||
AddOutputFilterByType DEFLATE application/javascript application/json
|
||||
AddOutputFilterByType DEFLATE application/xml application/manifest+json
|
||||
AddOutputFilterByType DEFLATE image/svg+xml
|
||||
</IfModule>
|
||||
|
||||
# ----- Browser caching -----
|
||||
# No file-hashing on this site, so keep CSS/JS short (updates must propagate)
|
||||
# and cache images/fonts longer. HTML is always revalidated.
|
||||
<IfModule mod_expires.c>
|
||||
ExpiresActive On
|
||||
ExpiresByType text/html "access plus 0 seconds"
|
||||
ExpiresByType text/css "access plus 1 day"
|
||||
ExpiresByType application/javascript "access plus 1 day"
|
||||
ExpiresByType image/webp "access plus 1 month"
|
||||
ExpiresByType image/jpeg "access plus 1 month"
|
||||
ExpiresByType image/png "access plus 1 month"
|
||||
ExpiresByType image/svg+xml "access plus 1 month"
|
||||
ExpiresByType image/x-icon "access plus 1 month"
|
||||
ExpiresByType font/woff2 "access plus 1 month"
|
||||
</IfModule>
|
||||
<IfModule mod_headers.c>
|
||||
Header set X-Content-Type-Options "nosniff"
|
||||
<FilesMatch "\.html$">
|
||||
Header set Cache-Control "no-cache, must-revalidate"
|
||||
</FilesMatch>
|
||||
</IfModule>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,74 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Page not found - MSOS</title>
|
||||
<meta name="robots" content="noindex">
|
||||
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
|
||||
<!-- Root-absolute paths: a 404 is served under the requested URL, so
|
||||
relative paths would resolve against the wrong directory. -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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">
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
|
||||
<style>
|
||||
.nf-wrap { min-height: 82vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
|
||||
.nf-card { max-width: 560px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
|
||||
.nf-card img { width: 240px; max-width: 70%; height: auto; margin-bottom: 24px; }
|
||||
.nf-code { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #2D738C; margin: 0; }
|
||||
.nf-card h1 { font-size: 40px; line-height: 1.15; color: #101828; margin: 8px 0 0; }
|
||||
.nf-card p.nf-lead { font-size: 18px; line-height: 28px; color: #667085; margin: 12px 0 28px; }
|
||||
.nf-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
|
||||
.nf-links { margin-top: 28px; font-size: 15px; color: #667085; }
|
||||
.nf-links a { color: #2D738C; font-weight: 500; text-decoration: none; margin: 0 8px; }
|
||||
.nf-links a:hover { text-decoration: underline; }
|
||||
@media (max-width: 600px){ .nf-card h1 { font-size: 30px; } }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main class="nf-wrap">
|
||||
<div class="nf-card">
|
||||
<a href="/en/"><img loading="lazy" decoding="async" src="/images/1-logo.png" alt="Macedonian Student Organisation in Slovenia"></a>
|
||||
<p class="nf-code">404 error</p>
|
||||
<h1>Page not found</h1>
|
||||
<p class="nf-lead">The page you're looking for doesn't exist or may have moved. Let's get you back on track.</p>
|
||||
<div class="nf-actions">
|
||||
<a href="/en/" class="btn btn-primary">Go to homepage</a>
|
||||
<a href="/en/student-welcome-guide/" class="btn btn-secondary">Student welcome guide</a>
|
||||
</div>
|
||||
<p class="nf-links">
|
||||
<a href="/en/projects/">Events & projects</a>·
|
||||
<a href="/en/blog/">Blog</a>·
|
||||
<a href="/en/news/">News</a>·
|
||||
<a href="/en/faq/">FAQs</a>
|
||||
</p>
|
||||
<p class="nf-links" style="margin-top:12px;">
|
||||
<a href="/mk/">Македонски</a>·
|
||||
<a href="/si/">Slovenščina</a>
|
||||
</p>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
/* MSOS cookie-consent banner (GDPR / Google Consent Mode v2).
|
||||
* Non-blocking bottom card. Remembers the choice in localStorage. On "Accept"
|
||||
* it grants analytics consent so GA4 (loaded denied-by-default in <head>) can
|
||||
* set cookies; on "Decline" it stays denied. Trilingual, self-contained,
|
||||
* no dependencies. Re-open anytime via window.msosOpenConsent(). */
|
||||
(function () {
|
||||
var KEY = 'msos-consent';
|
||||
|
||||
// Language from <html lang> (Slovene folder /si/ uses lang="sl").
|
||||
var docLang = (document.documentElement.getAttribute('lang') || 'en').toLowerCase();
|
||||
var lang = docLang === 'sl' ? 'si' : (['en', 'mk', 'si'].indexOf(docLang) === -1 ? 'en' : docLang);
|
||||
|
||||
var T = {
|
||||
en: { text: 'We use cookies to measure how the site is used and improve it. You can accept or decline analytics cookies.',
|
||||
accept: 'Accept', decline: 'Decline', policy: 'Cookie policy', aria: 'Cookie consent' },
|
||||
mk: { text: 'Користиме колачиња за да измериме како се користи страницата и да ја подобриме. Можете да ги прифатите или одбиете аналитичките колачиња.',
|
||||
accept: 'Прифати', decline: 'Одбиј', policy: 'Политика за колачиња', aria: 'Согласност за колачиња' },
|
||||
si: { text: 'Uporabljamo piškotke, da izmerimo, kako se stran uporablja, in jo izboljšamo. Analitične piškotke lahko sprejmete ali zavrnete.',
|
||||
accept: 'Sprejmi', decline: 'Zavrni', policy: 'Politika piškotkov', aria: 'Soglasje za piškotke' }
|
||||
};
|
||||
var t = T[lang];
|
||||
var policyHref = '/' + lang + '/cookie-policy/';
|
||||
|
||||
function gtagSafe() { window.dataLayer = window.dataLayer || []; window.gtag = window.gtag || function () { window.dataLayer.push(arguments); }; }
|
||||
|
||||
function grant() {
|
||||
gtagSafe();
|
||||
window.gtag('consent', 'update', {
|
||||
ad_storage: 'granted', ad_user_data: 'granted',
|
||||
ad_personalization: 'granted', analytics_storage: 'granted'
|
||||
});
|
||||
}
|
||||
|
||||
function injectStyles() {
|
||||
if (document.getElementById('msos-cc-style')) return;
|
||||
var css = '' +
|
||||
'.msos-cc{position:fixed;left:16px;right:16px;bottom:16px;z-index:9999;max-width:560px;margin:0 auto;' +
|
||||
'background:#fff;border:1px solid #EAECF0;border-radius:14px;box-shadow:0 12px 32px rgba(16,24,40,.14);' +
|
||||
"padding:18px 20px;font-family:'Inter',system-ui,sans-serif;animation:msosccin .25s ease-out}" +
|
||||
'@keyframes msosccin{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}' +
|
||||
'.msos-cc p{margin:0 0 14px;font-size:14px;line-height:21px;color:#475467}' +
|
||||
'.msos-cc a{color:#2D738C;font-weight:600;text-decoration:none}.msos-cc a:hover{text-decoration:underline}' +
|
||||
'.msos-cc-row{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap}' +
|
||||
'.msos-cc button{font-family:inherit;font-size:14px;font-weight:600;border-radius:8px;padding:9px 18px;' +
|
||||
'cursor:pointer;border:1px solid transparent;transition:background .15s,color .15s,border-color .15s}' +
|
||||
'.msos-cc-accept{background:#2D738C;color:#fff}.msos-cc-accept:hover{background:#255f74}' +
|
||||
'.msos-cc-decline{background:#fff;border-color:#D0D5DD;color:#344054}.msos-cc-decline:hover{background:#F9FAFB}' +
|
||||
'@media(max-width:520px){.msos-cc-row{justify-content:stretch}.msos-cc button{flex:1}}';
|
||||
var s = document.createElement('style');
|
||||
s.id = 'msos-cc-style';
|
||||
s.textContent = css;
|
||||
document.head.appendChild(s);
|
||||
}
|
||||
|
||||
function close(el) { if (el && el.parentNode) el.parentNode.removeChild(el); }
|
||||
|
||||
function show() {
|
||||
injectStyles();
|
||||
var box = document.createElement('div');
|
||||
box.className = 'msos-cc';
|
||||
box.setAttribute('role', 'dialog');
|
||||
box.setAttribute('aria-label', t.aria);
|
||||
box.innerHTML =
|
||||
'<p>' + t.text + ' <a href="' + policyHref + '">' + t.policy + '</a></p>' +
|
||||
'<div class="msos-cc-row">' +
|
||||
'<button type="button" class="msos-cc-decline">' + t.decline + '</button>' +
|
||||
'<button type="button" class="msos-cc-accept">' + t.accept + '</button>' +
|
||||
'</div>';
|
||||
box.querySelector('.msos-cc-accept').addEventListener('click', function () {
|
||||
try { localStorage.setItem(KEY, 'granted'); } catch (e) {}
|
||||
grant();
|
||||
close(box);
|
||||
});
|
||||
box.querySelector('.msos-cc-decline').addEventListener('click', function () {
|
||||
try { localStorage.setItem(KEY, 'denied'); } catch (e) {}
|
||||
close(box);
|
||||
});
|
||||
document.body.appendChild(box);
|
||||
}
|
||||
|
||||
// Let a "manage cookies" link re-open the banner: <a onclick="msosOpenConsent()">
|
||||
window.msosOpenConsent = function () { if (!document.querySelector('.msos-cc')) show(); };
|
||||
|
||||
var choice = null;
|
||||
try { choice = localStorage.getItem(KEY); } catch (e) {}
|
||||
if (choice !== 'granted' && choice !== 'denied') {
|
||||
if (document.body) show();
|
||||
else document.addEventListener('DOMContentLoaded', show);
|
||||
}
|
||||
})();
|
||||
|
|
@ -61,6 +61,17 @@
|
|||
padding: 3px 10px;
|
||||
}
|
||||
|
||||
/* Published-post meta (read time) — replaces the "Coming soon" pill on live cards */
|
||||
.blog-read-time {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: #2D738C;
|
||||
}
|
||||
.blog-read-time i { font-size: 12px; }
|
||||
|
||||
.blog-section-label {
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
|
|
@ -101,6 +112,16 @@
|
|||
min-height: 120px;
|
||||
}
|
||||
.blog-feat--lg .blog-feat-thumb { min-height: 280px; font-size: 64px; }
|
||||
/* Real cover image inside a featured card thumb (replaces the icon placeholder) */
|
||||
.blog-feat-thumb--image { position: relative; padding: 0; }
|
||||
.blog-feat-thumb--image img {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
.blog-feat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
|
||||
.blog-feat--lg .blog-feat-body { padding: 28px; gap: 16px; }
|
||||
.blog-feat h3 { margin: 0; font-size: 18px; line-height: 1.3; color: #101828; }
|
||||
|
|
|
|||
|
|
@ -0,0 +1,99 @@
|
|||
# Launch-day SEO checklist
|
||||
|
||||
Everything below is **blocked until the site goes live on the final domain
|
||||
`msosorg.com`** (it can't be done on the temp host `msos.spletnimojster.si`).
|
||||
Work top to bottom on launch day. The on-page/technical SEO is already done —
|
||||
this is the "flip the switch" list.
|
||||
|
||||
---
|
||||
|
||||
## 0. Before you flip the domain
|
||||
|
||||
- [ ] **Native-speaker proofread of MK + SI content.** All Macedonian/Slovene
|
||||
translations (blog post, about-us, timeline, meta descriptions) are
|
||||
AI-drafted and marked for review. Fix before indexing — quality counts.
|
||||
- [ ] Decide the **canonical domain**: with-`www` or bare `msosorg.com`.
|
||||
Everything is currently hard-coded to `https://msosorg.com` (bare, https).
|
||||
If you want `www`, tell me and I'll re-run the injector with the new base.
|
||||
|
||||
## 1. DNS + hosting
|
||||
|
||||
- [ ] Point `msosorg.com` DNS to the host.
|
||||
- [ ] Confirm a valid **HTTPS certificate** (Let's Encrypt / host-provided).
|
||||
- [ ] Confirm the site loads at `https://msosorg.com/en/` (and `/mk/`, `/si/`).
|
||||
|
||||
## 2. Redirects (`.htaccess`)
|
||||
|
||||
- [ ] Update the root redirect in `.htaccess` (lines 2–5): change
|
||||
`msos.spletnimojster.si` → `msosorg.com` so `/` → `/en/` on the real host.
|
||||
- [ ] Add a **301 from the temp domain to the final domain** so any links /
|
||||
early indexing on `msos.spletnimojster.si` pass equity to `msosorg.com`:
|
||||
```apache
|
||||
RewriteCond %{HTTP_HOST} ^(www\.)?msos\.spletnimojster\.si$ [NC]
|
||||
RewriteRule ^(.*)$ https://msosorg.com/$1 [R=301,L]
|
||||
```
|
||||
- [ ] Pick ONE host form (www vs non-www) and 301 the other to it.
|
||||
- [ ] (Ask me to make these edits — they're quick.)
|
||||
|
||||
## 3. Verify the technical layer resolves on the real domain
|
||||
|
||||
- [ ] `https://msosorg.com/robots.txt` loads and lists the sitemap.
|
||||
- [ ] `https://msosorg.com/sitemap.xml` loads (201 URLs, all `msosorg.com`).
|
||||
- [ ] Spot-check a page's `<link rel="canonical">` and `hreflang` point to
|
||||
`https://msosorg.com/...` (they do — just confirm live).
|
||||
- [ ] Hit a bad URL (e.g. `/en/blog/xxx`) → branded **404** with 404 status
|
||||
(works once the Apache `ErrorDocument` is live).
|
||||
|
||||
## 4. Google Search Console ← most important
|
||||
|
||||
- [ ] Add the property (prefer **Domain property** via DNS TXT — covers all
|
||||
subdomains + http/https).
|
||||
- [ ] Submit `https://msosorg.com/sitemap.xml`.
|
||||
- [ ] Use **URL Inspection** on the homepage + a couple key pages → *Request
|
||||
indexing*.
|
||||
- [ ] Check **International Targeting** → no hreflang errors.
|
||||
- [ ] Over the next weeks: watch **Coverage/Pages**, **Core Web Vitals**, and
|
||||
the **Performance** report.
|
||||
|
||||
## 5. Bing Webmaster Tools (optional, ~5 min)
|
||||
|
||||
- [ ] Add the site (can import from Search Console) and submit the sitemap.
|
||||
|
||||
## 6. Analytics (measure the SEO) — see `docs/` note / ask me to wire it
|
||||
|
||||
- [ ] Create the analytics account (GA4 or Plausible — recommendation below).
|
||||
- [ ] Give me the Measurement ID (GA4) or confirm the domain (Plausible); I add
|
||||
the snippet to `tools/seo_inject.py` so it lands on all 201 pages at once.
|
||||
- [ ] Verify real-time hits after deploy.
|
||||
|
||||
## 7. Social / rich-result validation
|
||||
|
||||
- [ ] **Rich Results Test** (search.google.com/test/rich-results) on a blog,
|
||||
news, and project URL → Article + BreadcrumbList detected, no errors.
|
||||
- [ ] **Facebook Sharing Debugger** — paste homepage + a blog URL, click
|
||||
*Scrape Again* → correct title/description/OG image.
|
||||
- [ ] **LinkedIn Post Inspector** — same check.
|
||||
- [ ] Confirm the favicon shows in a browser tab and in Google results.
|
||||
|
||||
## 8. Post-launch monitoring (first 2–4 weeks)
|
||||
|
||||
- [ ] Watch indexing count climb in Search Console.
|
||||
- [ ] Fix anything in Coverage (excluded/errors).
|
||||
- [ ] Re-check Core Web Vitals (image optimization + lazy-loading should keep
|
||||
these green).
|
||||
- [ ] Add fresh content (blog/news) — freshness + internal links help.
|
||||
|
||||
---
|
||||
|
||||
### Notes / gotchas
|
||||
|
||||
- **Custom 404** only works on the Apache/LiteSpeed host via `.htaccess`
|
||||
`ErrorDocument` (already added). The Python dev server ignores it.
|
||||
- **Re-run after any page add/rename/delete:**
|
||||
`python tools/seo_inject.py --all --sitemap` (keeps canonical, hreflang and
|
||||
the sitemap in sync).
|
||||
- **`images/original/`** (458 MB source masters) is gitignored — keep a
|
||||
Drive/local backup; it never deploys.
|
||||
- If the final domain or www-choice differs from `https://msosorg.com`, the
|
||||
`DOMAIN` constant in `tools/seo_inject.py` must be updated and the injector
|
||||
re-run — one-line change, ask me.
|
||||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Our Team, Mission, Vision & Core Values - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" defer></script>
|
||||
<meta name="description" content="MSOS is more than an organization - it is the energy of the team behind it. Our members are the heart and driving force that inspires us, writing this story…">
|
||||
<link rel="canonical" href="https://msosorg.com/en/about-us/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/about-us/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/about-us/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/about-us/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/about-us/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Our Team, Mission, Vision & Core Values - MSOS">
|
||||
<meta property="og:description" content="MSOS is more than an organization - it is the energy of the team behind it. Our members are the heart and driving force that inspires us, writing this story…">
|
||||
<meta property="og:url" content="https://msosorg.com/en/about-us/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Our Team, Mission, Vision & Core Values - MSOS">
|
||||
<meta name="twitter:description" content="MSOS is more than an organization - it is the energy of the team behind it. Our members are the heart and driving force that inspires us, writing this story…">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -245,12 +288,12 @@
|
|||
<p>The strength of MSOS comes from giving our time and energy selflessly. Every project, event, and idea in MSOS is built on the hard work of our amazing volunteers. Our volunteer spirit is a testament to the dedication, passion, and collaborative energy of our community and the reason why we grow stronger together.</p>
|
||||
</div>
|
||||
<div class="value-image">
|
||||
<img src="../../images/about_volunteer_spirit.webp" alt="A group of volunteers working together with positive energy.">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_volunteer_spirit.webp" alt="A group of volunteers working together with positive energy.">
|
||||
</div>
|
||||
</div>
|
||||
<div class="value-row">
|
||||
<div class="value-image">
|
||||
<img src="../../images/about_solidarity_and_care_for_each_other.webp" alt="Students supporting each other in a friendly and caring manner.">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_solidarity_and_care_for_each_other.webp" alt="Students supporting each other in a friendly and caring manner.">
|
||||
</div>
|
||||
<div class="value-content">
|
||||
<h3>Solidarity & care for each other</h3>
|
||||
|
|
@ -263,7 +306,7 @@
|
|||
<p>We are proud of where we come from and carry our Macedonian heritage with us, while striving for a brighter future. Our roots give us strength, and our ambition pushes us forward. Our ambition drives us to be professional, innovative, and influential leaders and role models in our host country.</p>
|
||||
</div>
|
||||
<div class="value-image">
|
||||
<img src="../../images/about_love_for_our_roots_ambition_for_the_future.webp" alt="A blend of traditional Macedonian culture and modern ambitious students.">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_love_for_our_roots_ambition_for_the_future.webp" alt="A blend of traditional Macedonian culture and modern ambitious students.">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -281,7 +324,7 @@
|
|||
<p>The mission of MSOS is to represent the interests, improve the lives, and ease the studies of Macedonian students in the Republic of Slovenia.</p>
|
||||
</div>
|
||||
<div class="box-content mission-icon-content">
|
||||
<img src="../../images/about_mission.webp" alt="Mission Icon">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_mission.webp" alt="Mission Icon">
|
||||
</div>
|
||||
</div>
|
||||
<!-- Vision Box -->
|
||||
|
|
@ -290,7 +333,7 @@
|
|||
<p>The vision of the MSOS is to provide a voice, a home, and support for Macedonian students in the Republic of Slovenia, while encouraging their active involvement in projects of common interest.</p>
|
||||
</div>
|
||||
<div class="box-content vision-icon-content">
|
||||
<img src="../../images/about_vision.webp" alt="Vision Icon">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_vision.webp" alt="Vision Icon">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -300,9 +343,9 @@
|
|||
<section class="faq-cta-section">
|
||||
<div class="faq-cta-container">
|
||||
<div class="avatar-group">
|
||||
<img src="../../images/about_marija_min.webp" alt="Avatar of Marija" class="avatar">
|
||||
<img src="../../images/about_kristijan_min.webp" alt="Avatar of Kristijan" class="avatar large">
|
||||
<img src="../../images/about_lea_min.webp" alt="Avatar of Lea" class="avatar">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_marija_min.webp" alt="Avatar of Marija" class="avatar">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_kristijan_min.webp" alt="Avatar of Kristijan" class="avatar large">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_lea_min.webp" alt="Avatar of Lea" class="avatar">
|
||||
</div>
|
||||
<h3>Have any questions?</h3>
|
||||
<p class="page-description" style="margin: 0;">Can't find the answer you're looking for? Please chat to our friendly team.</p>
|
||||
|
|
@ -317,7 +360,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -364,6 +407,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Become a member - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/become-a-member/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/become-a-member/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/become-a-member/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Become a member - MSOS">
|
||||
<meta property="og: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.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/become-a-member/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Become a member - MSOS">
|
||||
<meta name="twitter: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.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -155,7 +198,7 @@
|
|||
<a class="btn btn-secondary" href="#showcase">See what we do</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mm-hero-collage"><div class="mm-hero-photo mm-hero-photo--1"><img src="../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024" loading="eager"></div><div class="mm-hero-photo mm-hero-photo--2"><img src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana" loading="eager"></div><div class="mm-hero-photo mm-hero-photo--3"><img src="../../images/handball-2025-1.png" alt="Cheering for Macedonia, Watching Handball Together in Slovenia" loading="eager"></div></div>
|
||||
<div class="mm-hero-collage"><div class="mm-hero-photo mm-hero-photo--1"><img src="../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024" loading="eager"></div><div class="mm-hero-photo mm-hero-photo--2"><img src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana" loading="eager"></div><div class="mm-hero-photo mm-hero-photo--3"><img src="../../images/handball-2025-1.webp" alt="Cheering for Macedonia, Watching Handball Together in Slovenia" loading="eager"></div></div>
|
||||
</section>
|
||||
|
||||
<section class="mm-section">
|
||||
|
|
@ -254,11 +297,11 @@
|
|||
<div class="mm-real-body"><h3>Enjoy a student night</h3><p>Music, friends and a night that feels like home.</p><span class="mm-real-link">Read the story <i class="fas fa-arrow-right" aria-hidden="true"></i></span></div>
|
||||
</a>
|
||||
<a class="mm-real" href="../projects/humanitarian-tournament-in-maribor/">
|
||||
<div class="mm-real-media"><img src="../../images/maribor-tournament-1.png" alt="Give back together" loading="lazy"></div>
|
||||
<div class="mm-real-media"><img src="../../images/maribor-tournament-1.webp" alt="Give back together" loading="lazy"></div>
|
||||
<div class="mm-real-body"><h3>Give back together</h3><p>Take part in humanitarian activities that help others.</p><span class="mm-real-link">Read the story <i class="fas fa-arrow-right" aria-hidden="true"></i></span></div>
|
||||
</a>
|
||||
<a class="mm-real" href="../projects/watching-handball-together-in-slovenia/">
|
||||
<div class="mm-real-media"><img src="../../images/handball-2025-1.png" alt="Cheer side by side" loading="lazy"></div>
|
||||
<div class="mm-real-media"><img src="../../images/handball-2025-1.webp" alt="Cheer side by side" loading="lazy"></div>
|
||||
<div class="mm-real-body"><h3>Cheer side by side</h3><p>Sports, energy and belonging, wherever you study.</p><span class="mm-real-link">Read the story <i class="fas fa-arrow-right" aria-hidden="true"></i></span></div>
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -294,11 +337,11 @@
|
|||
<h3>Macedonian Student Night in Ljubljana</h3>
|
||||
</a>
|
||||
<a class="mm-show" href="../projects/humanitarian-tournament-in-maribor/">
|
||||
<div class="mm-show-media"><img src="../../images/maribor-tournament-1.png" alt="Humanitarian Sports Tournament: Playing with Heart, Together for Kočani" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img src="../../images/maribor-tournament-1.webp" alt="Humanitarian Sports Tournament: Playing with Heart, Together for Kočani" loading="lazy"></div>
|
||||
<h3>Humanitarian Sports Tournament: Playing with Heart, Together for Kočani</h3>
|
||||
</a>
|
||||
<a class="mm-show" href="../projects/paint-and-wine-at-sunset/">
|
||||
<div class="mm-show-media"><img src="../../images/paint-wine-1.jpg" alt="Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img src="../../images/paint-wine-1.webp" alt="Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music" loading="lazy"></div>
|
||||
<h3>Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music</h3>
|
||||
</a>
|
||||
<a class="mm-show" href="../projects/morning-coffee-in-front-of-ctk/">
|
||||
|
|
@ -306,7 +349,7 @@
|
|||
<h3>Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles</h3>
|
||||
</a>
|
||||
<a class="mm-show" href="../projects/watching-handball-together-in-slovenia/">
|
||||
<div class="mm-show-media"><img src="../../images/handball-2025-1.png" alt="Cheering for Macedonia, Watching Handball Together in Slovenia" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img src="../../images/handball-2025-1.webp" alt="Cheering for Macedonia, Watching Handball Together in Slovenia" loading="lazy"></div>
|
||||
<h3>Cheering for Macedonia, Watching Handball Together in Slovenia</h3>
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -501,7 +544,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -548,6 +591,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,423 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>How to open a Slovenian bank account as an international student - MSOS</title>
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/blog/how-to-open-slovenian-bank-account/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/blog/how-to-open-slovenian-bank-account/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="How to open a Slovenian bank account as an international student - MSOS">
|
||||
<meta property="og: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.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/blog-slovenian-bank-account.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="How to open a Slovenian bank account as an international student - MSOS">
|
||||
<meta name="twitter: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.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/blog-slovenian-bank-account.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"How to open a Slovenian bank account as an international student","description":"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.","image":"https://msosorg.com/images/blog-slovenian-bank-account.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/","datePublished":"2026-08-01","dateModified":"2026-08-01"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://msosorg.com/en/blog/"},{"@type":"ListItem","position":3,"name":"How to open a Slovenian bank account as an international student","item":"https://msosorg.com/en/blog/how-to-open-slovenian-bank-account/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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">
|
||||
|
||||
<!-- Font Awesome (for icons) -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- START_HEADER -->
|
||||
<header class="dropdown-header-navigation">
|
||||
<div class="container">
|
||||
<!-- Logotip je zdaj samostojen element na levi strani -->
|
||||
<a href="../../../en/" class="logo-link">
|
||||
<img src="../../../images/1-logo.png" alt="Macedonian Student Organisation in Slovenia Logo" class="logo-img">
|
||||
</a>
|
||||
|
||||
<!-- Nov ovoj za vse elemente na desni strani -->
|
||||
<div class="header-right-wrapper">
|
||||
<nav>
|
||||
<ul class="navigation desktop-nav">
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">Who We Are</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
|
||||
<li><a href="../../../en/about-us/">Our team</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">What We Do</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/projects/">Events & Projects</a></li>
|
||||
<li><a href="../../../en/blog/">Blog</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">For Students</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
|
||||
<li><a href="../../../en/faq/">FAQs</a></li>
|
||||
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
|
||||
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item"><a href="../../../en/news/">News</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="navigation-actions">
|
||||
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
|
||||
<button class="btn btn-primary">Support MSOS ❤️</button>
|
||||
<div class="language-selector">
|
||||
<div class="current-lang">
|
||||
<i class="fas fa-globe"></i>
|
||||
<span id="current-lang-code">EN</span>
|
||||
<i class="fas fa-chevron-down"></i>
|
||||
</div>
|
||||
<div class="lang-dropdown">
|
||||
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
|
||||
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
|
||||
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Ikona za mobilni meni ostaja ločena za lažje upravljanje -->
|
||||
<div class="mobile-menu-icon">
|
||||
<i class="fas fa-bars"></i>
|
||||
<i class="fas fa-times"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Panel za mobilno navigacijo (struktura ostaja enaka) -->
|
||||
<div class="mobile-nav-panel">
|
||||
<nav>
|
||||
<ul class="navigation mobile-nav">
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">Who We Are</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
|
||||
<li><a href="../../../en/about-us/">Our team</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">What We Do</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/projects/">Events & Projects</a></li>
|
||||
<li><a href="../../../en/blog/">Blog</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">For Students</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
|
||||
<li><a href="../../../en/faq/">FAQs</a></li>
|
||||
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
|
||||
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item"><a href="../../../en/news/">News</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="navigation-actions">
|
||||
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
|
||||
<button class="btn btn-primary">Support MSOS ❤️</button>
|
||||
<div class="language-selector">
|
||||
<button class="current-lang" id="mobile-lang-trigger">
|
||||
<i class="fas fa-globe"></i>
|
||||
<span>EN</span>
|
||||
<i class="fas fa-chevron-right"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modalno okno za izbiro jezika (ostaja enako) -->
|
||||
<div id="language-modal-overlay">
|
||||
<div class="language-modal-content">
|
||||
<div class="language-modal-header">
|
||||
<h3>Select Language</h3>
|
||||
<button id="language-modal-close" aria-label="Close language selection">×</button>
|
||||
</div>
|
||||
<div class="language-modal-body">
|
||||
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
|
||||
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
|
||||
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END_HEADER -->
|
||||
|
||||
<main class="article-page">
|
||||
<!-- Sticky Mobile Header -->
|
||||
<div class="mobile-article-header">
|
||||
<span id="mobile-article-title">How to open a Slovenian bank account</span>
|
||||
<i class="fas fa-chevron-down"></i>
|
||||
<div class="progress-bar-container">
|
||||
<div class="progress-bar"></div>
|
||||
</div>
|
||||
<!-- Dropdown Menu for Mobile -->
|
||||
<div class="mobile-scrollspy-dropdown">
|
||||
<ul id="mobile-scrollspy-links">
|
||||
<!-- Links will be dynamically inserted here by JavaScript -->
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="article-layout-container">
|
||||
<!-- Desktop Scrollspy Sidebar -->
|
||||
<aside class="article-sidebar">
|
||||
<nav class="scrollspy-nav">
|
||||
<ul>
|
||||
<li><a href="#why-useful" class="active">Why a Slovenian bank account is useful</a></li>
|
||||
<li><a href="#what-you-need">What you normally need</a></li>
|
||||
<li><a href="#how-to-open">How to open the account</a></li>
|
||||
<li><a href="#banks">Banks students commonly consider</a></li>
|
||||
<li><a href="#keep-updated">Keep your information updated</a></li>
|
||||
<li><a href="#flik">Flik and mobile banking</a></li>
|
||||
<li><a href="#tips">Tips from MSOS students</a></li>
|
||||
<li><a href="#sources">Sources and further information</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</aside>
|
||||
|
||||
<article class="article-container">
|
||||
<header class="article-header">
|
||||
<p class="article-publish-date">Student life · Last checked 1 August 2026</p>
|
||||
<h1>How to open a Slovenian bank account as an international student</h1>
|
||||
<p class="article-subtitle">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.</p>
|
||||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/blog-slovenian-bank-account.webp" alt="International student using mobile banking after opening a Slovenian bank account">
|
||||
<figcaption>Photo by <a href="https://www.pexels.com/photo/4691474/" target="_blank" rel="noopener">Aukid Phumsirichat</a> on <a href="https://www.pexels.com/" target="_blank" rel="noopener">Pexels</a></figcaption>
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
<aside class="guide-box guide-box--warning">
|
||||
<p class="guide-box-title"><i class="fas fa-triangle-exclamation" aria-hidden="true"></i>Please verify the latest information</p>
|
||||
<p>Banks may change their account packages, fees, age limits, digital-opening conditions, and required documents. Contact the selected bank before visiting a branch, especially if you are a foreign student with temporary residence.</p>
|
||||
</aside>
|
||||
|
||||
<h2 id="why-useful">Why a Slovenian bank account is useful</h2>
|
||||
<p>A Slovenian bank account is not always legally required for every student, but it makes everyday life much easier. It is commonly used for student-work payments, scholarships, rent, utility bills, local transfers, SEPA direct debits, and card payments. It also gives you access to Flik, which many students use to split rent, groceries, transport, and other shared expenses.</p>
|
||||
<p>A foreign SEPA account may still work for some payments, but local employers, student services, landlords, and institutions often find a Slovenian account more practical. For most students who plan to live, work, and study in Slovenia for more than a short period, opening one is worth considering.</p>
|
||||
|
||||
<h2 id="what-you-need">What you normally need</h2>
|
||||
<p>The exact list differs between banks, but an incoming student should normally prepare the following documents and information.</p>
|
||||
<ol>
|
||||
<li><strong>A valid passport.</strong> Bring the original document. The bank records your citizenship, passport number, issuing country, and expiry date.</li>
|
||||
<li><strong>A Slovenian tax number, or davčna številka.</strong> Foreign citizens obtain it from FURS by submitting form DR-02. The request can normally be submitted personally, by post, or through an authorised person. FURS states that the certificate is generally issued within eight days after receiving a complete request. More information is available on the <a href="https://www.fu.gov.si/en/life_events_individuals/obtaining_a_tax_identification_number_for_a_foreign_natural_person" target="_blank" rel="noopener">official FURS page</a>.</li>
|
||||
<li><strong>Proof of lawful stay and residence.</strong> Bring your temporary residence permit if it has already been issued. Depending on the bank and the stage of your move, it may also request proof of a submitted residence application, temporary-address registration, rental contract, or dormitory confirmation.</li>
|
||||
<li><strong>Proof of student status.</strong> For a student or youth package, bring a current certificate of enrolment, or potrdilo o vpisu. A student card or admission letter may also be useful, but the certificate of enrolment is normally the safest document.</li>
|
||||
<li><strong>Your permanent and temporary addresses.</strong> The bank may record both your permanent address in Macedonia and your current address in Slovenia. Bring official evidence where available.</li>
|
||||
<li><strong>Tax-residency information.</strong> The bank will ask in which country or countries you are resident for tax purposes and may request your tax number for each country. Having a Slovenian tax number does not automatically mean that you are a Slovenian tax resident. Contact FURS if you are unsure about your status.</li>
|
||||
<li><strong>A Slovenian phone number and email address.</strong> These are commonly used for mobile banking, security messages, card notifications, and Flik activation.</li>
|
||||
</ol>
|
||||
<p>The bank may also ask how the account will be used and where incoming funds will come from. A student can normally explain that the account will be used for living expenses, rent, student-work income, scholarships, and transfers from family.</p>
|
||||
|
||||
<h2 id="how-to-open">How to open the account</h2>
|
||||
<ol>
|
||||
<li><strong>Obtain your Slovenian tax number first.</strong> This is one of the documents most frequently requested by banks.</li>
|
||||
<li><strong>Compare student and youth packages.</strong> Do not look only at the monthly fee. Check the age limit, ATM withdrawal fees, included transfers, debit-card costs, Flik availability, mobile-banking functions, and what happens after graduation or after you reach the package age limit.</li>
|
||||
<li><strong>Contact the branch before visiting.</strong> Explain that you are a citizen of North Macedonia, an international student, and a temporary resident in Slovenia. Ask for the exact document list. Online account opening is often limited to Slovenian citizens or permanent residents, so visiting a branch is usually the safer option for a newly arrived student.</li>
|
||||
<li><strong>Bring original documents and printed copies.</strong> A passport, tax-number certificate, residence permit, address evidence, and certificate of enrolment should cover most requests, but the bank may ask for additional information.</li>
|
||||
<li><strong>Complete the bank’s declarations.</strong> You will normally be asked about citizenship, tax residence, expected account activity, source of funds, and whether you are a politically exposed person.</li>
|
||||
<li><strong>Activate your services.</strong> Before leaving, ask when the debit card and PIN will arrive, how to activate mobile banking and Flik, which withdrawals are free, and how future document updates should be submitted.</li>
|
||||
</ol>
|
||||
|
||||
<h2 id="banks">Banks commonly considered by students</h2>
|
||||
<p>The options below are not ranked and should not be treated as formal recommendations. Packages change, so confirm the current conditions directly with the bank.</p>
|
||||
<ol>
|
||||
<li><strong>NLB</strong> offers the NLB Osnovni račun, currently promoted as free for young people up to the stated age limit. The published basic requirements include a valid identity document and Slovenian tax number, while proof of student status may be required for selected offers. Its services include NLB Klik, NLB Pay, Flik, and supported mobile wallets. See the <a href="https://www.nlb.si/osebno/racuni-in-paketi/osnovni-racun" target="_blank" rel="noopener">NLB account page</a>.</li>
|
||||
<li><strong>OTP banka</strong> offers Paket Vizija for young people under the published age limit. Its current information lists an identity document, Slovenian tax-number certificate, and proof of schooling or student status. The package includes access to mobile and online banking, Flik, and supported mobile wallets. See <a href="https://www.otpbanka.si/paket-vizija" target="_blank" rel="noopener">Paket Vizija</a>.</li>
|
||||
<li><strong>Intesa Sanpaolo Bank</strong> offers a Youth Account or Youth Package for students and young people. A branch normally requires a valid identity document and tax number, while a foreign student should also bring residence, address, and enrolment evidence. App-based account opening has stricter eligibility conditions, so foreign students should contact a branch. See the <a href="https://www.intesasanpaolobank.si/en/prebivalstvo/paketi-in-racuni/transakcijski-racun-mladih.html" target="_blank" rel="noopener">Youth Account page</a>.</li>
|
||||
<li><strong>UniCredit Bank Slovenia</strong> offers the Sproščeni Mladi package for young people and students under the published age limit. The bank lists a valid identity document and Slovenian tax number as basic requirements, but foreign customers may be asked for additional residence and address evidence. See the <a href="https://www.unicreditbank.si/si/prebivalstvo/osebne-finance/bancni-paket-digitalni-in-mladi.html" target="_blank" rel="noopener">young customer package</a>.</li>
|
||||
<li><strong>Banka Sparkasse</strong> offers the Udobni Študentski račun. Its published information lists an identity document, Slovenian tax number, and certificate of enrolment for the student account. See the <a href="https://www.sparkasse.si/sl/prebivalstvo/pogosta-vprasanja/kaj-potrebujem-za-odprtje-osebnega-transakcijskega-racuna" target="_blank" rel="noopener">account-opening requirements</a>.</li>
|
||||
<li><strong>Delavska hranilnica</strong> offers the DH EYCA Mladostni paket for young people and students under its published conditions. A valid identity document, Slovenian tax number, and proof of student status are normally required. See the <a href="https://www.dh.si/racuni-in-kartice/dh-eyca-mladostni-paket/" target="_blank" rel="noopener">DH EYCA package</a>.</li>
|
||||
</ol>
|
||||
<p>If a bank does not approve a normal account, ask whether you qualify for an <strong>osnovni plačilni račun</strong>, or basic payment account. A person who legally resides in the European Union and does not already have a Slovenian transaction account may have the right to request this type of account. It covers essential services such as receiving money, withdrawals, card payments, transfers, direct debits, and standing orders. More information is available from <a href="https://www.bsi.si/storage/uploads/551f0c02-5299-49cc-ac02-c1661d804758/LETAK-Osnovni-rac%CC%8Cun-splet.pdf" target="_blank" rel="noopener">Banka Slovenije</a>.</p>
|
||||
|
||||
<h2 id="keep-updated">Keep your information updated after opening the account</h2>
|
||||
<p>Opening the account is not the final administrative step. Banks are required to keep customer information current, and foreign students should report important changes without waiting for the bank to contact them.</p>
|
||||
<p>Every time you renew your temporary residence permit, bring the new permit to the bank or ask how it should be submitted securely. This should normally be done each year, because the bank may need valid evidence after the previous document expires.</p>
|
||||
<p>You should also notify the bank if your permanent or temporary address changes, if you receive a new passport, if your name or citizenship information changes, or if you change your phone number or email address. An outdated phone number can block authentication codes and security notifications.</p>
|
||||
<p>Tax residency must also remain accurate. Inform the bank if you become a Slovenian tax resident, cease to be one, or remain tax resident in Macedonia. The bank may ask you to complete a new CRS self-certification. A Slovenian tax number and Slovenian tax residency are not the same thing, so consult FURS when your situation is unclear.</p>
|
||||
|
||||
<h2 id="flik">Flik and mobile banking</h2>
|
||||
<p>Flik is a Slovenian instant-payment service that allows users of participating banks to send and receive money using a phone number or email address. Payments usually arrive within seconds and work throughout the day, including weekends and public holidays.</p>
|
||||
<p>Students commonly use Flik to split rent and utility costs, repay friends, share grocery expenses, collect money for an event, or request payment without entering an IBAN. The exact app depends on the bank. NLB uses NLB Pay, Sparkasse uses M.Stik, Delavska hranilnica uses DH Denarnik, while several banks support Flik Pay or integrate Flik into their own mobile-banking application. A list of participating banks is available on the <a href="https://www.flik.si/" target="_blank" rel="noopener">official Flik website</a> and through <a href="https://www.bankart.si/flik-pay/" target="_blank" rel="noopener">Bankart</a>.</p>
|
||||
<p>When comparing bank apps, check whether they support QR bill scanning, SEPA and instant payments, Flik, card freezing, card-limit changes, payment notifications, online-purchase confirmation, digital statements, and Apple Pay or Google Pay. Not every bank offers the same features or activates them in the same way for foreign customers.</p>
|
||||
|
||||
<h2 id="tips">Tips from MSOS students</h2>
|
||||
<ol>
|
||||
<li><strong>Book an appointment and bring more documents than the minimum.</strong> A foreign-student account may take longer to process. Carry your passport, Slovenian and Macedonian tax numbers, residence permit, address evidence, certificate of enrolment, and Slovenian phone number.</li>
|
||||
<li><strong>Ask what happens when your student status ends.</strong> A free account may become paid after graduation, employment, loss of status, or reaching the package age limit. Ask whether the bank changes the package automatically and what the new monthly cost will be.</li>
|
||||
<li><strong>Compare ATM and transaction fees.</strong> A package with no monthly fee can still charge for withdrawals at other banks, foreign-card use, paper statements, international transfers, or services completed at a bank counter.</li>
|
||||
<li><strong>Use Flik for everyday shared expenses.</strong> It is often faster than cash and more convenient than entering an IBAN each time.</li>
|
||||
<li><strong>NLB Macedonia customers may have a useful benefit.</strong> NLB Banka in Macedonia states that its debit-card customers can withdraw euros without an NLB withdrawal commission at NLB Group ATMs in Slovenia. Use an ATM clearly marked as part of the NLB Group. Currency conversion may still apply if the Macedonian account is held in denars, so commission-free does not always mean cost-free. Check the current conditions on the <a href="https://www.nlb.mk/fizicki-lica/soveti-dokumenti-i-alatki/karticki/dali-imam-trosoci-za-podignuvanje-na-gotovina-so-debitna-kartick" target="_blank" rel="noopener">NLB Banka Macedonia page</a>.</li>
|
||||
<li><strong>Be careful with ATM conversion and security messages.</strong> When withdrawing with a foreign card, read the exchange-rate offer before accepting conversion. Never share your PIN, mobile-banking password, or one-time security code through an unexpected message or link.</li>
|
||||
</ol>
|
||||
<p>Before visiting a bank, make sure you have a valid passport, Slovenian tax number, residence evidence, proof of address, certificate of enrolment, contact details, and information about your tax residency and expected account use.</p>
|
||||
|
||||
<h2 id="sources">Sources and further information</h2>
|
||||
<p>For account eligibility and the exact document list, contact the selected bank directly. For a Slovenian tax number or tax-residency questions, consult <a href="https://www.fu.gov.si/en/life_events_individuals/obtaining_a_tax_identification_number_for_a_foreign_natural_person" target="_blank" rel="noopener">FURS</a>. For rights relating to a basic payment account or complaints about financial services, consult <a href="https://www.bsi.si/" target="_blank" rel="noopener">Banka Slovenije</a>. For residence documentation, contact the responsible upravna enota or the Slovenian Embassy in Skopje.</p>
|
||||
<p>MSOS can explain the process and share student experience, but the bank makes the final decision about required documents, account eligibility, and package conditions.</p>
|
||||
|
||||
<ul class="guide-linklist">
|
||||
<li><a href="https://www.fu.gov.si/en/life_events_individuals/obtaining_a_tax_identification_number_for_a_foreign_natural_person" target="_blank" rel="noopener">FURS: Slovenian tax number for a foreign individual</a></li>
|
||||
<li><a href="https://www.bsi.si/storage/uploads/551f0c02-5299-49cc-ac02-c1661d804758/LETAK-Osnovni-rac%CC%8Cun-splet.pdf" target="_blank" rel="noopener">Banka Slovenije: Basic payment account</a></li>
|
||||
<li><a href="https://www.nlb.si/osebno/racuni-in-paketi/osnovni-racun" target="_blank" rel="noopener">NLB Osnovni račun</a></li>
|
||||
<li><a href="https://www.otpbanka.si/paket-vizija" target="_blank" rel="noopener">OTP Paket Vizija</a></li>
|
||||
<li><a href="https://www.intesasanpaolobank.si/en/prebivalstvo/paketi-in-racuni/transakcijski-racun-mladih.html" target="_blank" rel="noopener">Intesa Sanpaolo Youth Account</a></li>
|
||||
<li><a href="https://www.unicreditbank.si/si/prebivalstvo/osebne-finance/bancni-paket-digitalni-in-mladi.html" target="_blank" rel="noopener">UniCredit packages for young people</a></li>
|
||||
<li><a href="https://www.sparkasse.si/sl/prebivalstvo/pogosta-vprasanja/kaj-potrebujem-za-odprtje-osebnega-transakcijskega-racuna" target="_blank" rel="noopener">Sparkasse account-opening requirements</a></li>
|
||||
<li><a href="https://www.dh.si/racuni-in-kartice/dh-eyca-mladostni-paket/" target="_blank" rel="noopener">DH EYCA Mladostni paket</a></li>
|
||||
<li><a href="https://www.flik.si/" target="_blank" rel="noopener">Flik</a></li>
|
||||
<li><a href="https://www.nlb.mk/fizicki-lica/soveti-dokumenti-i-alatki/karticki/dali-imam-trosoci-za-podignuvanje-na-gotovina-so-debitna-kartick" target="_blank" rel="noopener">NLB Banka Macedonia: NLB Group ATM withdrawals</a></li>
|
||||
</ul>
|
||||
|
||||
<p class="guide-last-checked">Last checked: 1 August 2026</p>
|
||||
</div>
|
||||
|
||||
<footer class="article-footer">
|
||||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img loading="lazy" decoding="async" src="../../../images/msos-emblem-avatar.png" alt="MSOS emblem">
|
||||
<div class="author-text">
|
||||
<p class="author-name">MSOS Team</p>
|
||||
<p class="author-title">Macedonian Student Organisation in Slovenia</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="share-buttons">
|
||||
<button class="btn btn-secondary"><i class="fas fa-link"></i> Copy link</button>
|
||||
<a href="#" class="social-icon-btn" aria-label="Share on Facebook"><i class="fab fa-facebook-f"></i></a>
|
||||
<a href="#" class="social-icon-btn" aria-label="Share on LinkedIn"><i class="fab fa-linkedin-in"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<section class="newsletter-cta">
|
||||
<div class="container">
|
||||
<div class="cta-content">
|
||||
<h2>Never miss an MSOS update</h2>
|
||||
<p>News, announcements and open calls — straight to your inbox.</p>
|
||||
<form class="subscribe-form-bottom">
|
||||
<div class="input-wrapper">
|
||||
<input type="email" placeholder="Enter your email">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
<p class="privacy-note">We care about your data in our <a href="../../../en/privacy-policy/">privacy policy</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<!-- START_FOOTER -->
|
||||
<footer>
|
||||
<div class="footer-container">
|
||||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
Masarykova cesta 24<br>
|
||||
1000 Ljubljana, Slovenia<br>
|
||||
<a href="mailto:info@msosorg.com">info@msosorg.com</a>
|
||||
</p>
|
||||
<div class="social-icons">
|
||||
<a href="https://www.facebook.com/msos.org" aria-label="Facebook" target="_blank" rel="noopener"><i class="fab fa-facebook-f"></i></a>
|
||||
<a href="https://www.instagram.com/msosorg_com" aria-label="Instagram" target="_blank" rel="noopener"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/company/msos-org" aria-label="LinkedIn" target="_blank" rel="noopener"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.youtube.com/@msosorg" aria-label="YouTube" target="_blank" rel="noopener"><i class="fab fa-youtube"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<div class="links-column">
|
||||
<h4>Student guide</h4>
|
||||
<a href="../../../en/student-welcome-guide/">Student welcome guide</a>
|
||||
<a href="../../../en/student-welcome-guide/complete-student-journey/">The whole journey</a>
|
||||
<a href="../../../en/student-welcome-guide/application-deadlines/">Application deadlines</a>
|
||||
<a href="../../../en/student-welcome-guide/evs-application-guide/">Apply through eVŠ</a>
|
||||
<a href="../../../en/student-welcome-guide/student-residence-permit/">Residence permit</a>
|
||||
<a href="../../../en/student-welcome-guide/student-accommodation/">Accommodation</a>
|
||||
</div>
|
||||
<div class="links-column">
|
||||
<h4>Explore</h4>
|
||||
<a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a>
|
||||
<a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a>
|
||||
<a href="../../../en/projects/">Projects and events</a>
|
||||
</div>
|
||||
<div class="links-column">
|
||||
<h4>Organisation</h4>
|
||||
<a href="../../../en/about-us/">About us</a>
|
||||
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
|
||||
<a href="mailto:info@msosorg.com">Contact us</a>
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2026 MSOS. All rights reserved.</p>
|
||||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Blog - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/blog/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/blog/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/blog/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Blog - MSOS">
|
||||
<meta property="og:description" content="Real experiences and practical advice from Macedonian students in Slovenia. New stories are on the way.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/blog/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Blog - MSOS">
|
||||
<meta name="twitter:description" content="Real experiences and practical advice from Macedonian students in Slovenia. New stories are on the way.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -161,14 +204,14 @@
|
|||
</div>
|
||||
</article>
|
||||
<div class="blog-feat-side">
|
||||
<article class="blog-feat " data-topic="guides">
|
||||
<div class="blog-feat-thumb"><i class="fas fa-signs-post" aria-hidden="true"></i></div>
|
||||
<a class="blog-feat " data-topic="guides" href="how-to-open-slovenian-bank-account/">
|
||||
<div class="blog-feat-thumb blog-feat-thumb--image"><img loading="lazy" decoding="async" src="../../images/blog-slovenian-bank-account.webp" alt="International student using mobile banking after opening a Slovenian bank account"></div>
|
||||
<div class="blog-feat-body">
|
||||
<span class="blog-tag blog-tag--guides"><i class="fas fa-signs-post" aria-hidden="true"></i> Guides</span>
|
||||
<h3>How to open a Slovenian bank account</h3>
|
||||
<span class="blog-soon">Coming soon</span>
|
||||
<span class="blog-read-time"><i class="fas fa-clock" aria-hidden="true"></i> 8 min read</span>
|
||||
</div>
|
||||
</article>
|
||||
</a>
|
||||
<article class="blog-feat " data-topic="study-tips">
|
||||
<div class="blog-feat-thumb"><i class="fas fa-lightbulb" aria-hidden="true"></i></div>
|
||||
<div class="blog-feat-body">
|
||||
|
|
@ -277,7 +320,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -324,6 +367,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Cookie Policy - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/cookie-policy/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/cookie-policy/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/cookie-policy/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Cookie Policy - MSOS">
|
||||
<meta property="og:description" content="How this website uses cookies and similar technologies, and how you can control them.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/cookie-policy/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Cookie Policy - MSOS">
|
||||
<meta name="twitter:description" content="How this website uses cookies and similar technologies, and how you can control them.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -207,7 +250,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -254,6 +297,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Frequently asked questions - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/faq/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/faq/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/faq/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Frequently asked questions - MSOS">
|
||||
<meta property="og:description" content="Short answers to the questions Macedonian students ask most about studying and living in Slovenia — applications, residence, work, housing and more.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/faq/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Frequently asked questions - MSOS">
|
||||
<meta name="twitter:description" content="Short answers to the questions Macedonian students ask most about studying and living in Slovenia — applications, residence, work, housing and more.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -425,7 +468,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -472,6 +515,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>A Table Full of Macedonia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-macedonia/a-table-full-of-macedonia/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-macedonia/a-table-full-of-macedonia/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="A Table Full of Macedonia - MSOS">
|
||||
<meta property="og: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.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/macedonia-food-shared-table-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="A Table Full of Macedonia - MSOS">
|
||||
<meta name="twitter: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.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/macedonia-food-shared-table-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"A Table Full of Macedonia","description":"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.","image":"https://msosorg.com/images/macedonia-food-shared-table-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Macedonia","item":"https://msosorg.com/en/get-to-know-macedonia/"},{"@type":"ListItem","position":3,"name":"A Table Full of Macedonia","item":"https://msosorg.com/en/get-to-know-macedonia/a-table-full-of-macedonia/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/macedonia-food-shared-table-hero.jpg" alt="A shared Macedonian table with salads, bread, beans, and other dishes">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-food-shared-table-hero.webp" alt="A shared Macedonian table with salads, bread, beans, and other dishes">
|
||||
<figcaption>A shared Macedonian table. Photo: nehruresen, <a href="https://depositphotos.com/" target="_blank" rel="noopener">Depositphotos</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -193,7 +238,7 @@
|
|||
<p>It does not need decoration. Bread and time are enough.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-food-tavce-gravce.jpg" alt="Tavče gravče baked and served in a clay dish">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-food-tavce-gravce.webp" alt="Tavče gravče baked and served in a clay dish">
|
||||
<figcaption>Tavče gravče, the Macedonian baked bean dish. Photo: <a href="https://en.wikipedia.org/wiki/Tav%C4%8De_grav%C4%8De" target="_blank" rel="noopener">Wikipedia</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -226,7 +271,7 @@
|
|||
<p>Pastrmajlija is a useful example of how one dish can carry city identity. People do not only discuss whether it is good. They discuss where the right version comes from.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-food-ajvar-preparation.jpg" alt="Roasted red peppers being prepared for homemade ajvar">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-food-ajvar-preparation.webp" alt="Roasted red peppers being prepared for homemade ajvar">
|
||||
<figcaption>Ajvar, a roasted red pepper relish. Photo: <a href="https://100daysandnights.com/ajvar/" target="_blank" rel="noopener">100daysandnights.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -259,7 +304,7 @@
|
|||
<p>For visitors, the useful lesson is not to measure Macedonian hospitality through efficiency. The extra time is part of what is being offered.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-food-pastrmajlija.jpg" alt="A traditional oval pastrmajlija topped with seasoned meat">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-food-pastrmajlija.webp" alt="A traditional oval pastrmajlija topped with seasoned meat">
|
||||
<figcaption>Pastrmajlija, a Macedonian meat flatbread. Photo: <a href="https://balkantravel.rs/en/gastro-corner/pastrmajlija-the-irresistible-taste-of-north-macedonia/" target="_blank" rel="noopener">balkantravel.rs</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -284,7 +329,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -331,6 +376,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>History You Can Still Walk Through - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-macedonia/history-you-can-still-walk-through/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-macedonia/history-you-can-still-walk-through/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="History You Can Still Walk Through - MSOS">
|
||||
<meta property="og: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.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/macedonia-heritage-stobi-street-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="History You Can Still Walk Through - MSOS">
|
||||
<meta name="twitter: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.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/macedonia-heritage-stobi-street-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"History You Can Still Walk Through","description":"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.","image":"https://msosorg.com/images/macedonia-heritage-stobi-street-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Macedonia","item":"https://msosorg.com/en/get-to-know-macedonia/"},{"@type":"ListItem","position":3,"name":"History You Can Still Walk Through","item":"https://msosorg.com/en/get-to-know-macedonia/history-you-can-still-walk-through/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/macedonia-heritage-stobi-street-hero.jpg" alt="An ancient street and building remains at the archaeological site of Stobi">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-heritage-stobi-street-hero.webp" alt="An ancient street and building remains at the archaeological site of Stobi">
|
||||
<figcaption>Stobi, an ancient city in central Macedonia. Photo: <a href="https://www.archaeology.wiki/blog/2013/07/26/archaeological-work-to-be-resumed-in-stobi/" target="_blank" rel="noopener">archaeology.wiki</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -197,7 +242,7 @@
|
|||
<p>The site should not be presented only as an ancient ruin. It is also a record of archaeological research, conservation, reconstruction, and decisions about how heritage is shown to the public.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-heritage-heraclea-mosaic.jpg" alt="A preserved early Christian mosaic at Heraclea Lyncestis near Bitola">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-heritage-heraclea-mosaic.webp" alt="A preserved early Christian mosaic at Heraclea Lyncestis near Bitola">
|
||||
<figcaption>Heraclea Lyncestis, an ancient city near Bitola. Photo: Elizabeta Dimitrova, <a href="https://www.researchgate.net/figure/Heraclea-Lyncestis-detail_fig5_349303661" target="_blank" rel="noopener">ResearchGate</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -236,7 +281,7 @@
|
|||
<p>Krusevo is not one memorial. It is a network of places in which national, local, Aromanian, artistic, and family histories overlap.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-heritage-kokino.jpg" alt="The rocky archaeological landscape of Kokino at Tatićev Kamen">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-heritage-kokino.jpg" alt="The rocky archaeological landscape of Kokino at Tatićev Kamen">
|
||||
<figcaption>Kokino, a prehistoric megalithic observatory. Photo: <a href="https://northmacedonia-timeless.com/eng/things_to_do/senses/touch/archaeology/kokino/" target="_blank" rel="noopener">northmacedonia-timeless.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -253,7 +298,7 @@
|
|||
<p>Heritage becomes stronger when the route between objects is preserved in the story.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-heritage-krusevo-makedonium.jpg" alt="The Ilinden Monument, known as Makedonium, above Krusevo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-heritage-krusevo-makedonium.jpg" alt="The Ilinden Monument, known as Makedonium, above Krusevo">
|
||||
<figcaption>Makedonium, the Ilinden Monument above Kruševo. Photo: <a href="https://www.airvuz.com/video/ALIEN-Monument-?id=5b3c05705a1b667101abd26f" target="_blank" rel="noopener">airvuz.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -290,7 +335,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -337,6 +382,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Get to know Macedonia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-macedonia/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-macedonia/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-macedonia/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Get to know Macedonia - MSOS">
|
||||
<meta property="og: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…">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-macedonia/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Get to know Macedonia - MSOS">
|
||||
<meta name="twitter: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…">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -175,7 +218,7 @@
|
|||
<!-- Story: Welcome to Macedonia -->
|
||||
<article class="post-card" data-category="identity">
|
||||
<a href="welcome-to-macedonia/" class="post-link">
|
||||
<img src="../../images/macedonia-welcome-skopje-square-hero.jpg" alt="Macedonia Square in central Skopje" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/macedonia-welcome-skopje-square-hero.webp" alt="Macedonia Square in central Skopje" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • People & Identity</p>
|
||||
<h3 class="post-title">Welcome to Macedonia</h3>
|
||||
|
|
@ -186,7 +229,7 @@
|
|||
<!-- Story: Ohrid, More Than a Postcard -->
|
||||
<article class="post-card" data-category="places">
|
||||
<a href="ohrid-more-than-a-postcard/" class="post-link">
|
||||
<img src="../../images/macedonia-ohrid-kaneo-hero.jpg" alt="The Church of St. John at Kaneo above Lake Ohrid" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/macedonia-ohrid-kaneo-hero.webp" alt="The Church of St. John at Kaneo above Lake Ohrid" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • Places & Nature</p>
|
||||
<h3 class="post-title">Ohrid, More Than a Postcard</h3>
|
||||
|
|
@ -197,7 +240,7 @@
|
|||
<!-- Story: Skopje, A City of Many Layers -->
|
||||
<article class="post-card" data-category="places">
|
||||
<a href="skopje-a-city-of-many-layers/" class="post-link">
|
||||
<img src="../../images/macedonia-skopje-stone-bridge-hero.jpg" alt="The Stone Bridge over the Vardar in Skopje" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/macedonia-skopje-stone-bridge-hero.webp" alt="The Stone Bridge over the Vardar in Skopje" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • Places & Nature</p>
|
||||
<h3 class="post-title">Skopje, A City of Many Layers</h3>
|
||||
|
|
@ -208,7 +251,7 @@
|
|||
<!-- Story: A Table Full of Macedonia -->
|
||||
<article class="post-card" data-category="food">
|
||||
<a href="a-table-full-of-macedonia/" class="post-link">
|
||||
<img src="../../images/macedonia-food-shared-table-hero.jpg" alt="A shared Macedonian table with salads, bread, beans, and other dishes" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/macedonia-food-shared-table-hero.webp" alt="A shared Macedonian table with salads, bread, beans, and other dishes" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • Food & Flavours</p>
|
||||
<h3 class="post-title">A Table Full of Macedonia</h3>
|
||||
|
|
@ -219,7 +262,7 @@
|
|||
<!-- Story: Music, Dance and the Moments That Bring Us Together -->
|
||||
<article class="post-card" data-category="culture">
|
||||
<a href="music-dance-and-the-moments-that-bring-us-together/" class="post-link">
|
||||
<img src="../../images/macedonia-culture-oro-celebration-hero.jpg" alt="Several generations joining the same oro at a Macedonian celebration" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/macedonia-culture-oro-celebration-hero.webp" alt="Several generations joining the same oro at a Macedonian celebration" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • Culture & Traditions</p>
|
||||
<h3 class="post-title">Music, Dance and the Moments That Bring Us Together</h3>
|
||||
|
|
@ -230,7 +273,7 @@
|
|||
<!-- Story: History You Can Still Walk Through -->
|
||||
<article class="post-card" data-category="heritage">
|
||||
<a href="history-you-can-still-walk-through/" class="post-link">
|
||||
<img src="../../images/macedonia-heritage-stobi-street-hero.jpg" alt="An ancient street and building remains at the archaeological site of Stobi" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/macedonia-heritage-stobi-street-hero.webp" alt="An ancient street and building remains at the archaeological site of Stobi" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • History & Heritage</p>
|
||||
<h3 class="post-title">History You Can Still Walk Through</h3>
|
||||
|
|
@ -259,7 +302,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -306,6 +349,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Music, Dance and the Moments That Bring Us Together - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Music, Dance and the Moments That Bring Us Together - MSOS">
|
||||
<meta property="og: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.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/macedonia-culture-oro-celebration-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Music, Dance and the Moments That Bring Us Together - MSOS">
|
||||
<meta name="twitter: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.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/macedonia-culture-oro-celebration-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Music, Dance and the Moments That Bring Us Together","description":"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.","image":"https://msosorg.com/images/macedonia-culture-oro-celebration-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Macedonia","item":"https://msosorg.com/en/get-to-know-macedonia/"},{"@type":"ListItem","position":3,"name":"Music, Dance and the Moments That Bring Us Together","item":"https://msosorg.com/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/macedonia-culture-oro-celebration-hero.jpg" alt="Several generations joining the same oro at a Macedonian celebration">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-culture-oro-celebration-hero.webp" alt="Several generations joining the same oro at a Macedonian celebration">
|
||||
<figcaption>An oro at a Macedonian celebration. Photo: MKD Sv. Ciril i Metod, Kranj, <a href="https://www.facebook.com/photo/?fbid=27229726880015955&set=a.346970248718316" target="_blank" rel="noopener">Facebook</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -195,7 +240,7 @@
|
|||
<p>For many people living abroad, these sounds have an immediate emotional effect. A few notes can bring back a wedding, a village celebration, a family story, or a place that has not been visited for years.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-culture-tapan-zurla.jpg" alt="Musicians playing tapan and zurla at an outdoor gathering">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-culture-tapan-zurla.jpg" alt="Musicians playing tapan and zurla at an outdoor gathering">
|
||||
<figcaption>The tapan and zurla, traditional Macedonian instruments. Photo: <a href="https://www.instagram.com/p/Cy4eiWxSQ68/" target="_blank" rel="noopener">Instagram</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -232,7 +277,7 @@
|
|||
<p>People who would not choose the same music in daily life can still hold the same line.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-culture-kopachkata.jpg" alt="Kopachkata dancers holding their belts in a semicircle in Dramche">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-culture-kopachkata.jpg" alt="Kopachkata dancers holding their belts in a semicircle in Dramche">
|
||||
<figcaption>The Kopachkata, a social dance from Dramče. Photo: © Anastasov Kircho / Municipality of Delchevo, 2013, <a href="https://ich.unesco.org/en/RL/kopachkata-a-social-dance-from-the-village-of-dramche-pijanec-00995" target="_blank" rel="noopener">ich.unesco.org</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -265,7 +310,7 @@
|
|||
<p>Change becomes continuity when people know what they are carrying forward.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/msos-macedonian-music-event.jpg" alt="Macedonian students dancing together at an MSOS event in Slovenia">
|
||||
<img loading="lazy" decoding="async" src="../../../images/msos-macedonian-music-event.webp" alt="Macedonian students dancing together at an MSOS event in Slovenia">
|
||||
<figcaption>Photo: MSOS Archive</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -290,7 +335,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -337,6 +382,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Ohrid, More Than a Postcard - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-macedonia/ohrid-more-than-a-postcard/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Ohrid, More Than a Postcard - MSOS">
|
||||
<meta property="og:description" content="The lake attracts the first look. The old streets, wooden houses, churches, neighbourhoods, and evening conversations are what make people return.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/macedonia-ohrid-kaneo-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Ohrid, More Than a Postcard - MSOS">
|
||||
<meta name="twitter:description" content="The lake attracts the first look. The old streets, wooden houses, churches, neighbourhoods, and evening conversations are what make people return.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/macedonia-ohrid-kaneo-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Ohrid, More Than a Postcard","description":"The lake attracts the first look. The old streets, wooden houses, churches, neighbourhoods, and evening conversations are what make people return.","image":"https://msosorg.com/images/macedonia-ohrid-kaneo-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Macedonia","item":"https://msosorg.com/en/get-to-know-macedonia/"},{"@type":"ListItem","position":3,"name":"Ohrid, More Than a Postcard","item":"https://msosorg.com/en/get-to-know-macedonia/ohrid-more-than-a-postcard/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/macedonia-ohrid-kaneo-hero.jpg" alt="The Church of St. John at Kaneo above Lake Ohrid">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-ohrid-kaneo-hero.webp" alt="The Church of St. John at Kaneo above Lake Ohrid">
|
||||
<figcaption>Church of St. John at Kaneo, Ohrid. Photo: <a href="https://www.ciconiatravel.com/2019/11/08/15-fantastic-facts-about-macedonia/" target="_blank" rel="noopener">ciconiatravel.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -191,7 +236,7 @@
|
|||
<p>Do not stop only at the famous viewpoint. Continue uphill. The route above Kaneo connects naturally with Plaošnik and the upper old town.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-ohrid-chinar-tree.jpg" alt="The ancient plane tree, the Chinar, in central Ohrid">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-chinar-tree.webp" alt="The ancient plane tree, the Chinar, in central Ohrid">
|
||||
<figcaption>The Chinar, the centuries-old plane tree in Ohrid. Photo: <a href="https://www.rexby.com/Travelsofmozzy/ttd/ancient-tree-of-beauty" target="_blank" rel="noopener">rexby.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -224,7 +269,7 @@
|
|||
<p>When returning downhill, choose a different street. The old town changes from one route to another.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-ohrid-plaosnik.jpg" alt="Archaeological remains and the Church of Saint Clement at Plaošnik">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-plaosnik.webp" alt="Archaeological remains and the Church of Saint Clement at Plaošnik">
|
||||
<figcaption>Plaošnik, Ohrid. Photo: <a href="https://macedonia-timeless.com/eng/things_to_do/senses/touch/archaeology/plaosnik/" target="_blank" rel="noopener">macedonia-timeless.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -255,7 +300,7 @@
|
|||
<p>Ohrid has survived because natural and cultural history developed together. The city cannot be preserved while the lake is ignored.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-ohrid-traditional-houses.jpg" alt="Traditional houses along a narrow street in Ohrid's old town">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-traditional-houses.webp" alt="Traditional houses along a narrow street in Ohrid's old town">
|
||||
<figcaption>Old town, Ohrid. Photo: <a href="https://www.fabionodariphoto.com/en/ohrid-things-to-do/" target="_blank" rel="noopener">fabionodariphoto.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -282,7 +327,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -329,6 +374,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Skopje, A City of Many Layers - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-macedonia/skopje-a-city-of-many-layers/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Skopje, A City of Many Layers - MSOS">
|
||||
<meta property="og:description" content="A city best understood by crossing the river, changing neighbourhoods, and noticing what each period left behind.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/macedonia-skopje-stone-bridge-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Skopje, A City of Many Layers - MSOS">
|
||||
<meta name="twitter:description" content="A city best understood by crossing the river, changing neighbourhoods, and noticing what each period left behind.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/macedonia-skopje-stone-bridge-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Skopje, A City of Many Layers","description":"A city best understood by crossing the river, changing neighbourhoods, and noticing what each period left behind.","image":"https://msosorg.com/images/macedonia-skopje-stone-bridge-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Macedonia","item":"https://msosorg.com/en/get-to-know-macedonia/"},{"@type":"ListItem","position":3,"name":"Skopje, A City of Many Layers","item":"https://msosorg.com/en/get-to-know-macedonia/skopje-a-city-of-many-layers/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/macedonia-skopje-stone-bridge-hero.jpg" alt="The Stone Bridge over the Vardar in Skopje">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-skopje-stone-bridge-hero.webp" alt="The Stone Bridge over the Vardar in Skopje">
|
||||
<figcaption>Stone Bridge, Skopje. Photo: <a href="https://macedonia-timeless.com/eng/about/about/did-you-know/stone-bridge" target="_blank" rel="noopener">macedonia-timeless.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -193,7 +238,7 @@
|
|||
<p>The bazaar is also one of the places where Skopje's multicultural character is most visible. Different religious, linguistic, culinary, and commercial traditions meet within a relatively small space.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-skopje-old-bazaar.jpg" alt="A working street in the Old Skopje Bazaar">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-skopje-old-bazaar.webp" alt="A working street in the Old Skopje Bazaar">
|
||||
<figcaption>Old Bazaar, Skopje. Photo: <a href="https://visit-skopje.com/old-bazaar-skopje/" target="_blank" rel="noopener">visit-skopje.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -224,7 +269,7 @@
|
|||
<p>To understand Skopje, it is worth looking beyond whether someone finds a building beautiful. The more important question is what problem it was trying to solve and what moment in the city's history produced it.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-skopje-old-railway-station.jpg" alt="The Museum of the City of Skopje in the former railway station">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-skopje-old-railway-station.webp" alt="The Museum of the City of Skopje in the former railway station">
|
||||
<figcaption>Museum of the City of Skopje. Photo: <a href="https://museumskopje.mk/" target="_blank" rel="noopener">museumskopje.mk</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -243,7 +288,7 @@
|
|||
<p>The contrast is not abstract. It can happen within the same day.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-skopje-vodno-view.jpg" alt="A view of Skopje from Mount Vodno">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-skopje-vodno-view.webp" alt="A view of Skopje from Mount Vodno">
|
||||
<figcaption>Mount Vodno, Skopje. Photo: <a href="https://visit-skopje.com/mount-vodno-skopje-best-views-hiking-trails-millennium-cross-guide/" target="_blank" rel="noopener">visit-skopje.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -272,7 +317,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -319,6 +364,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Welcome to Macedonia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-macedonia/welcome-to-macedonia/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-macedonia/welcome-to-macedonia/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Welcome to Macedonia - MSOS">
|
||||
<meta property="og:description" content="A country of mountains, open tables, long conversations, and stories that remain close wherever we go.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/macedonia-welcome-skopje-square-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Welcome to Macedonia - MSOS">
|
||||
<meta name="twitter:description" content="A country of mountains, open tables, long conversations, and stories that remain close wherever we go.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/macedonia-welcome-skopje-square-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Welcome to Macedonia","description":"A country of mountains, open tables, long conversations, and stories that remain close wherever we go.","image":"https://msosorg.com/images/macedonia-welcome-skopje-square-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Macedonia","item":"https://msosorg.com/en/get-to-know-macedonia/"},{"@type":"ListItem","position":3,"name":"Welcome to Macedonia","item":"https://msosorg.com/en/get-to-know-macedonia/welcome-to-macedonia/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/macedonia-welcome-skopje-square-hero.jpg" alt="Macedonia Square in central Skopje">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-welcome-skopje-square-hero.webp" alt="Macedonia Square in central Skopje">
|
||||
<figcaption>Macedonia Square, Skopje. Photo: <a href="https://macedonia-timeless.com/eng/cities_and_regions/cities/skopje/" target="_blank" rel="noopener">macedonia-timeless.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -189,7 +234,7 @@
|
|||
<p>That is why our memories of home are so often connected to people rather than only to places.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-welcome-hospitality.jpg" alt="A traditional Macedonian table filled with local dishes">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-welcome-hospitality.webp" alt="A traditional Macedonian table filled with local dishes">
|
||||
<figcaption>Traditional Macedonian table. Photo: Youth Empowered, <a href="https://commons.wikimedia.org/wiki/File:%D0%A2%D1%80%D0%B0%D0%B4%D0%B8%D1%86%D0%B8%D0%BE%D0%BD%D0%B0%D0%BB%D0%BD%D0%B0_%D0%BC%D0%B0%D0%BA%D0%B5%D0%B4%D0%BE%D0%BD%D1%81%D0%BA%D0%B0_%D1%82%D1%80%D0%BF%D0%B5%D0%B7%D0%B0_8.jpg" target="_blank" rel="noopener">Wikimedia Commons</a>, <a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank" rel="noopener">CC BY-SA 4.0</a> (cropped)</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -218,7 +263,7 @@
|
|||
<p>The most meaningful way to encounter it is often slowly, by walking, listening, and allowing a place to tell more than one story.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/macedonia-welcome-heritage.jpg" alt="The Robevci Family House in the old town of Ohrid">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-welcome-heritage.webp" alt="The Robevci Family House in the old town of Ohrid">
|
||||
<figcaption>Robevci Family House, Ohrid. Photo: Silfiriel, <a href="https://commons.wikimedia.org/wiki/File:%D0%9A%D1%83%D1%9C%D0%B0%D1%82%D0%B0_%D0%BD%D0%B0_%D0%A0%D0%BE%D0%B1%D0%B5%D0%B2%D1%86%D0%B8_-_%D0%9C%D1%83%D0%B7%D0%B5%D1%98_%D0%BD%D0%B0_%D0%B3%D1%80%D0%B0%D0%B4_%D0%9E%D1%85%D1%80%D0%B8%D0%B4_01.jpg" target="_blank" rel="noopener">Wikimedia Commons</a>, <a href="https://creativecommons.org/licenses/by-sa/3.0/" target="_blank" rel="noopener">CC BY-SA 3.0</a> (cropped)</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -269,7 +314,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -316,6 +361,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>A First Taste of Slovenian Food - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="A First Taste of Slovenian Food - MSOS">
|
||||
<meta property="og:description" content="Start with štruklji, jota, žlikrofi, frika, bograč, and potica. Together they reveal a cuisine shaped by regions rather than one fixed menu.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/slovenia-food-regional-table-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="A First Taste of Slovenian Food - MSOS">
|
||||
<meta name="twitter:description" content="Start with štruklji, jota, žlikrofi, frika, bograč, and potica. Together they reveal a cuisine shaped by regions rather than one fixed menu.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/slovenia-food-regional-table-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"A First Taste of Slovenian Food","description":"Start with štruklji, jota, žlikrofi, frika, bograč, and potica. Together they reveal a cuisine shaped by regions rather than one fixed menu.","image":"https://msosorg.com/images/slovenia-food-regional-table-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Slovenia","item":"https://msosorg.com/en/get-to-know-slovenia/"},{"@type":"ListItem","position":3,"name":"A First Taste of Slovenian Food","item":"https://msosorg.com/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/slovenia-food-regional-table-hero.jpg" alt="Several regional Slovenian dishes served together on a table">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-food-regional-table-hero.webp" alt="Several regional Slovenian dishes served together on a table">
|
||||
<figcaption>A spread of traditional Slovenian dishes. Photo: <a href="https://www.tasteslovenia.si/en/taste-slovenia/traditional-slovenian-food/" target="_blank" rel="noopener">tasteslovenia.si</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -203,7 +248,7 @@
|
|||
<p>This is a useful reminder that heritage is not only found in buildings and museums. It can survive in the shape of a dumpling.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-food-idrijski-zlikrofi.jpg" alt="Idrijski žlikrofi served with a meat sauce">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-food-idrijski-zlikrofi.webp" alt="Idrijski žlikrofi served with a meat sauce">
|
||||
<figcaption>Idrijski žlikrofi, dumplings from Idrija. Photo: <a href="https://www.turisticnekmetije.si/fr/gastronomie/recettes/recette/idrijski-zlikrofi-z-mesno-omako" target="_blank" rel="noopener">turisticnekmetije.si</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -220,7 +265,7 @@
|
|||
<p>Try frika where local cheese is treated as the centre of the dish, not as a garnish.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-food-frika.jpg" alt="Frika made with local cheese and potatoes">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-food-frika.webp" alt="Frika made with local cheese and potatoes">
|
||||
<figcaption>Frika, a cheese and potato dish from the Soča Valley. Photo: <a href="https://jernejkitchen.com/" target="_blank" rel="noopener">jernejkitchen.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -249,7 +294,7 @@
|
|||
<p>A shop-bought slice can introduce the flavour. A homemade potica tells a fuller story.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-food-potica.jpg" alt="Sliced walnut potica baked in a traditional round mould">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-food-potica.jpg" alt="Sliced walnut potica baked in a traditional round mould">
|
||||
<figcaption>Potica, a rolled Slovenian festive cake. Photo: <a href="https://www.zps.si/prehrana/recept-za-slovensko-potico-z-rozinami-2023-04-05" target="_blank" rel="noopener">zps.si</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -274,7 +319,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -321,6 +366,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Get to know Slovenia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-slovenia/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-slovenia/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-slovenia/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Get to know Slovenia - MSOS">
|
||||
<meta property="og: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…">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-slovenia/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Get to know Slovenia - MSOS">
|
||||
<meta name="twitter: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…">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -175,7 +218,7 @@
|
|||
<!-- Story: Welcome to Slovenia -->
|
||||
<article class="post-card" data-category="identity">
|
||||
<a href="welcome-to-slovenia/" class="post-link">
|
||||
<img src="../../images/slovenia-welcome-hero.jpg" alt="Lake Jasna near Kranjska Gora, with mountain peaks reflected in the water" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/slovenia-welcome-hero.webp" alt="Lake Jasna near Kranjska Gora, with mountain peaks reflected in the water" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • People & Identity</p>
|
||||
<h3 class="post-title">Welcome to Slovenia</h3>
|
||||
|
|
@ -186,7 +229,7 @@
|
|||
<!-- Story: Ljubljana Through Our Eyes -->
|
||||
<article class="post-card" data-category="places">
|
||||
<a href="ljubljana-through-our-eyes/" class="post-link">
|
||||
<img src="../../images/slovenia-ljubljana-river-life-hero.jpg" alt="A crowd gathered along the Ljubljanica during an event in central Ljubljana" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/slovenia-ljubljana-river-life-hero.webp" alt="A crowd gathered along the Ljubljanica during an event in central Ljubljana" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • Places & Nature</p>
|
||||
<h3 class="post-title">Ljubljana Through Our Eyes</h3>
|
||||
|
|
@ -197,7 +240,7 @@
|
|||
<!-- Story: Lake Bled Beyond the Famous View -->
|
||||
<article class="post-card" data-category="places">
|
||||
<a href="lake-bled-beyond-the-famous-view/" class="post-link">
|
||||
<img src="../../images/slovenia-bled-lakeside-walk-hero.jpg" alt="A walking path beside Lake Bled with the island and mountains in view" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/slovenia-bled-lakeside-walk-hero.webp" alt="A walking path beside Lake Bled with the island and mountains in view" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • Places & Nature</p>
|
||||
<h3 class="post-title">Lake Bled Beyond the Famous View</h3>
|
||||
|
|
@ -208,7 +251,7 @@
|
|||
<!-- Story: A First Taste of Slovenian Food -->
|
||||
<article class="post-card" data-category="food">
|
||||
<a href="a-first-taste-of-slovenian-food/" class="post-link">
|
||||
<img src="../../images/slovenia-food-regional-table-hero.jpg" alt="Several regional Slovenian dishes served together on a table" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/slovenia-food-regional-table-hero.webp" alt="Several regional Slovenian dishes served together on a table" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • Food & Flavours</p>
|
||||
<h3 class="post-title">A First Taste of Slovenian Food</h3>
|
||||
|
|
@ -219,7 +262,7 @@
|
|||
<!-- Story: Slovenian Habits That May Surprise You -->
|
||||
<article class="post-card" data-category="culture">
|
||||
<a href="slovenian-habits-that-may-surprise-you/" class="post-link">
|
||||
<img src="../../images/slovenia-habits-guest-slippers-hero.jpg" alt="A pair of slippers by the entrance of a Slovenian home" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/slovenia-habits-guest-slippers-hero.webp" alt="A pair of slippers by the entrance of a Slovenian home" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • Culture & Traditions</p>
|
||||
<h3 class="post-title">Slovenian Habits That May Surprise You</h3>
|
||||
|
|
@ -230,7 +273,7 @@
|
|||
<!-- Story: Slovenia's Stories in Stone and Tradition -->
|
||||
<article class="post-card" data-category="heritage">
|
||||
<a href="slovenias-stories-in-stone-and-tradition/" class="post-link">
|
||||
<img src="../../images/slovenia-heritage-plecnik-daily-life-hero.jpg" alt="A Plečnik-designed public space beside the Ljubljanica" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/slovenia-heritage-plecnik-daily-life-hero.webp" alt="A Plečnik-designed public space beside the Ljubljanica" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • History & Heritage</p>
|
||||
<h3 class="post-title">Slovenia's Stories in Stone and Tradition</h3>
|
||||
|
|
@ -259,7 +302,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -306,6 +349,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Lake Bled Beyond the Famous View - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Lake Bled Beyond the Famous View - MSOS">
|
||||
<meta property="og: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.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/slovenia-bled-lakeside-walk-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Lake Bled Beyond the Famous View - MSOS">
|
||||
<meta name="twitter: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.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/slovenia-bled-lakeside-walk-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Lake Bled Beyond the Famous View","description":"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.","image":"https://msosorg.com/images/slovenia-bled-lakeside-walk-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Slovenia","item":"https://msosorg.com/en/get-to-know-slovenia/"},{"@type":"ListItem","position":3,"name":"Lake Bled Beyond the Famous View","item":"https://msosorg.com/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/slovenia-bled-lakeside-walk-hero.jpg" alt="A walking path beside Lake Bled with the island and mountains in view">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-bled-lakeside-walk-hero.webp" alt="A walking path beside Lake Bled with the island and mountains in view">
|
||||
<figcaption>Lake Bled. Photo: <a href="https://slovenia-activities.com/blog/lake-bled-hikes-and-walks/" target="_blank" rel="noopener">slovenia-activities.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -193,7 +238,7 @@
|
|||
<p>Even without visiting the island, Mlino is worth a pause. From here, the lake no longer looks like the standard postcard. The island is closer, the castle sits further to the side, and the mountains take up more of the background.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-bled-penzion-mlino.jpg" alt="A boat on Lake Bled by the shore at Mlino">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-bled-penzion-mlino.webp" alt="A boat on Lake Bled by the shore at Mlino">
|
||||
<figcaption>Mlino, Lake Bled. Photo: <a href="https://www.tripadvisor.com/Hotel_Review-g274863-d626733-Reviews-Penzion_Mlino-Bled_Upper_Carniola_Region.html" target="_blank" rel="noopener">Tripadvisor</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -212,7 +257,7 @@
|
|||
<p>The important thing is not to collect both viewpoints as quickly as possible. Choose one, take time at the top, and notice how the paths, settlements, forest, and lake fit together.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-bled-ojstrica-view.jpg" alt="Lake Bled, its island, and castle viewed from Ojstrica">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-bled-ojstrica-view.webp" alt="Lake Bled, its island, and castle viewed from Ojstrica">
|
||||
<figcaption>Ojstrica, above Lake Bled. Photo: <a href="https://kamzavikend.si/ideja/ojstrica-nad-bledom" target="_blank" rel="noopener">kamzavikend.si</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -231,7 +276,7 @@
|
|||
<p>Sometimes Bled is best experienced through one complete walk and enough time to sit by the water.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-bled-velika-zaka.jpg" alt="Rowing activity beside Lake Bled at Velika Zaka">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-bled-velika-zaka.webp" alt="Rowing activity beside Lake Bled at Velika Zaka">
|
||||
<figcaption>Velika Zaka, Lake Bled. Photo: Nejc Vurnik, <a href="https://www.bled.si/de/veranstaltungen/2026011409234812/2026-world-rowing-masters-regatta-bled/" target="_blank" rel="noopener">bled.si</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -270,7 +315,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -317,6 +362,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Ljubljana Through Our Eyes - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-slovenia/ljubljana-through-our-eyes/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-slovenia/ljubljana-through-our-eyes/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Ljubljana Through Our Eyes - MSOS">
|
||||
<meta property="og: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.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/slovenia-ljubljana-river-life-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Ljubljana Through Our Eyes - MSOS">
|
||||
<meta name="twitter: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.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/slovenia-ljubljana-river-life-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Ljubljana Through Our Eyes","description":"Not a complete guide to the city, but a collection of places and routines through which many of us began to feel at home.","image":"https://msosorg.com/images/slovenia-ljubljana-river-life-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Slovenia","item":"https://msosorg.com/en/get-to-know-slovenia/"},{"@type":"ListItem","position":3,"name":"Ljubljana Through Our Eyes","item":"https://msosorg.com/en/get-to-know-slovenia/ljubljana-through-our-eyes/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/slovenia-ljubljana-river-life-hero.jpg" alt="A crowd gathered along the Ljubljanica during an event in central Ljubljana">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-ljubljana-river-life-hero.webp" alt="A crowd gathered along the Ljubljanica during an event in central Ljubljana">
|
||||
<figcaption>Ljubljanica River, Ljubljana. Photo: CEV, <a href="https://inside.cev.eu/articles/federations/ljubljana-delivers-another-volleyball-on-water-spectacle/" target="_blank" rel="noopener">inside.cev.eu</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -189,7 +234,7 @@
|
|||
<p>Our recommendation is simple. Do not rush through it between two landmarks. Visit early enough to notice how people actually use it.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-ljubljana-central-market.jpg" alt="Food stalls at the Open Kitchen market in central Ljubljana">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-ljubljana-central-market.jpg" alt="Food stalls at the Open Kitchen market in central Ljubljana">
|
||||
<figcaption>Open Kitchen at Ljubljana's Central Market. Photo: Odprta kuhna, <a href="https://www.visitljubljana.com/en/visitors/tours-and-trips/open-kitchen-on-a-platter-the-gourmet-ljubljana-tasting-menus" target="_blank" rel="noopener">visitljubljana.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -208,7 +253,7 @@
|
|||
<p>In summer, arrive before sunset. Sit on the steps, watch the light change on the river, and let the evening develop on its own.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-ljubljana-trnovski-pristan.jpg" alt="People beside the river at Trnovski pristan in Ljubljana">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-ljubljana-trnovski-pristan.webp" alt="People beside the river at Trnovski pristan in Ljubljana">
|
||||
<figcaption>Trnovski pristan, Ljubljana. Photo: Gregor Babšek, <a href="https://www.gregorbabsek.si/Ljubljana_znamenitosti_14.html" target="_blank" rel="noopener">gregorbabsek.si</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -237,7 +282,7 @@
|
|||
<p>For someone who has only seen the historic centre, Metelkova can feel like a different city. That contrast is worth seeing.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-ljubljana-metelkova.jpg" alt="Murals and outdoor artworks at Metelkova in Ljubljana">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-ljubljana-metelkova.webp" alt="Murals and outdoor artworks at Metelkova in Ljubljana">
|
||||
<figcaption>Metelkova, Ljubljana. Photo: <a href="https://www.tripadvisor.com/Attraction_Review-g274873-d734854-Reviews-Metelkova-Ljubljana_Upper_Carniola_Region.html" target="_blank" rel="noopener">Tripadvisor</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -264,7 +309,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -311,6 +356,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Slovenian Habits That May Surprise You - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Slovenian Habits That May Surprise You - MSOS">
|
||||
<meta property="og:description" content="Not rules that describe every person, but small patterns many of us noticed while learning how everyday life works.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/slovenia-habits-guest-slippers-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Slovenian Habits That May Surprise You - MSOS">
|
||||
<meta name="twitter:description" content="Not rules that describe every person, but small patterns many of us noticed while learning how everyday life works.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/slovenia-habits-guest-slippers-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Slovenian Habits That May Surprise You","description":"Not rules that describe every person, but small patterns many of us noticed while learning how everyday life works.","image":"https://msosorg.com/images/slovenia-habits-guest-slippers-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Slovenia","item":"https://msosorg.com/en/get-to-know-slovenia/"},{"@type":"ListItem","position":3,"name":"Slovenian Habits That May Surprise You","item":"https://msosorg.com/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/slovenia-habits-guest-slippers-hero.jpg" alt="A pair of slippers by the entrance of a Slovenian home">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-habits-guest-slippers-hero.webp" alt="A pair of slippers by the entrance of a Slovenian home">
|
||||
<figcaption>A Slovenian home. Photo: <a href="https://www.dobrna-medical.si/copati-so-osnova-za-hojo-po-hisi/" target="_blank" rel="noopener">dobrna-medical.si</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -205,7 +250,7 @@
|
|||
<p>For newcomers, it is a small detail that quickly becomes natural. After enough walks, remaining silent can begin to feel stranger than saying hello.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-habits-mountain-greeting.jpg" alt="Hikers on a mountain path in Slovenia">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-habits-mountain-greeting.webp" alt="Hikers on a mountain path in Slovenia">
|
||||
<figcaption>Slovenian mountains. Photo: <a href="https://57hours.com/hiking-holidays-in-slovenia/" target="_blank" rel="noopener">57hours.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -254,7 +299,7 @@
|
|||
<p>The experience can feel familiar to Macedonian readers. The dishes differ, but the idea of a long family meal that structures part of the weekend is easy to recognise.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-habits-sunday-lunch.jpg" alt="A traditional Slovenian meal shared around a table">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-habits-sunday-lunch.webp" alt="A traditional Slovenian meal shared around a table">
|
||||
<figcaption>A Slovenian Sunday lunch. Photo: <a href="https://www.slovenia.info/en/stories/fragrant-slovenian-holiday-dishes" target="_blank" rel="noopener">slovenia.info</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -291,7 +336,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -338,6 +383,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Slovenia's Stories in Stone and Tradition - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Slovenia's Stories in Stone and Tradition - MSOS">
|
||||
<meta property="og: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…">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/slovenia-heritage-plecnik-daily-life-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Slovenia's Stories in Stone and Tradition - MSOS">
|
||||
<meta name="twitter: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…">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/slovenia-heritage-plecnik-daily-life-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Slovenia's Stories in Stone and Tradition","description":"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…","image":"https://msosorg.com/images/slovenia-heritage-plecnik-daily-life-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Slovenia","item":"https://msosorg.com/en/get-to-know-slovenia/"},{"@type":"ListItem","position":3,"name":"Slovenia's Stories in Stone and Tradition","item":"https://msosorg.com/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/slovenia-heritage-plecnik-daily-life-hero.jpg" alt="A Plečnik-designed public space beside the Ljubljanica">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-heritage-plecnik-daily-life-hero.webp" alt="A Plečnik-designed public space beside the Ljubljanica">
|
||||
<figcaption>Plečnik's riverside Ljubljana. Photo: Dunja Wedam, <a href="https://www.visitljubljana.com/" target="_blank" rel="noopener">visitljubljana.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -197,7 +242,7 @@
|
|||
<p>Škocjan is the place where that hidden geology becomes impossible to ignore.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-heritage-skocjan-caves.jpg" alt="A visitor bridge above the underground river in Škocjan Caves">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-heritage-skocjan-caves.webp" alt="A visitor bridge above the underground river in Škocjan Caves">
|
||||
<figcaption>The Škocjan Caves, a UNESCO World Heritage site. Photo: <a href="https://sunsetobsession.com/why-visit-skocjan-caves/" target="_blank" rel="noopener">sunsetobsession.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -218,7 +263,7 @@
|
|||
<p>Even Idrijski žlikrofi, now one of Slovenia's best-known protected dishes, belong to this larger working environment.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-heritage-idrija-mine.jpg" alt="A preserved tunnel connected with Idrija's mercury mine">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-heritage-idrija-mine.jpg" alt="A preserved tunnel connected with Idrija's mercury mine">
|
||||
<figcaption>Anthony's Shaft, Idrija. Photo: Samo Trebizan, <a href="https://travelslovenia.org/anthony-shaft-mine-idrija/" target="_blank" rel="noopener">travelslovenia.org</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -251,7 +296,7 @@
|
|||
<p>The stronger picture appears when different regions are allowed to keep their own stories.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-heritage-beekeeping.jpg" alt="A Slovenian apiary with painted beehive panels">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-heritage-beekeeping.webp" alt="A Slovenian apiary with painted beehive panels">
|
||||
<figcaption>A traditional Slovenian apiary with painted beehive panels. Photo: David Robertson / Alamy, <a href="https://www.atlasobscura.com/articles/what-are-slovenian-beehouses" target="_blank" rel="noopener">atlasobscura.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -276,7 +321,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -323,6 +368,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Welcome to Slovenia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/get-to-know-slovenia/welcome-to-slovenia/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/get-to-know-slovenia/welcome-to-slovenia/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Welcome to Slovenia - MSOS">
|
||||
<meta property="og:description" content="A small country of many landscapes, quiet discoveries, and places that slowly begin to feel like home.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/slovenia-welcome-hero.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Welcome to Slovenia - MSOS">
|
||||
<meta name="twitter:description" content="A small country of many landscapes, quiet discoveries, and places that slowly begin to feel like home.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/slovenia-welcome-hero.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Welcome to Slovenia","description":"A small country of many landscapes, quiet discoveries, and places that slowly begin to feel like home.","image":"https://msosorg.com/images/slovenia-welcome-hero.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Get to know Slovenia","item":"https://msosorg.com/en/get-to-know-slovenia/"},{"@type":"ListItem","position":3,"name":"Welcome to Slovenia","item":"https://msosorg.com/en/get-to-know-slovenia/welcome-to-slovenia/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -151,7 +196,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/slovenia-welcome-hero.jpg" alt="Lake Jasna near Kranjska Gora, with mountain peaks reflected in the water">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-welcome-hero.webp" alt="Lake Jasna near Kranjska Gora, with mountain peaks reflected in the water">
|
||||
<figcaption>Lake Jasna, near Kranjska Gora. Photo: Denis Sodržnik, <a href="https://travelslovenia.org/denis-sodrznik-photography/" target="_blank" rel="noopener">travelslovenia.org</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -173,7 +218,7 @@
|
|||
<p>This variety makes Slovenia easy to explore slowly. You do not need to see everything at once. The country often rewards returning to the same place in another season, with different weather and a different mood.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-welcome-landscape.jpg" alt="Vineyards and rolling hills in the Slovenian wine country">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-welcome-landscape.webp" alt="Vineyards and rolling hills in the Slovenian wine country">
|
||||
<figcaption>Vineyards in Bela krajina and Posavje. Photo: <a href="https://www.slovenia.info/en/things-to-do/food-and-wine/wines-of-slovenia" target="_blank" rel="noopener">slovenia.info</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -188,7 +233,7 @@
|
|||
<p>The same is true across the country. Slovenia is full of places that become meaningful because you return to them.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/slovenia-welcome-ljubljana.jpg" alt="People spending time beside the Ljubljanica River in central Ljubljana">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-welcome-ljubljana.webp" alt="People spending time beside the Ljubljanica River in central Ljubljana">
|
||||
<figcaption>Ljubljanica River, Ljubljana. Photo: Mankica Kranjec, Nea Culpa, <a href="https://www.slovenia.info" target="_blank" rel="noopener">slovenia.info</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -247,7 +292,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -294,6 +339,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Macedonian Student Organisation in Slovenia</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:description" content="The first official Macedonian student organisation in Slovenia — support, events, community and a voice for Macedonian students from application to graduation.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta name="twitter:description" content="The first official Macedonian student organisation in Slovenia — support, events, community and a voice for Macedonian students from application to graduation.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -199,7 +242,7 @@
|
|||
|
||||
<section class="meet-the-team-section">
|
||||
<div class="video-container">
|
||||
<img src="../images/3.activites.webp" alt="Team members collaborating" class="video-thumbnail">
|
||||
<img loading="lazy" decoding="async" src="../images/3.activites.webp" alt="Team members collaborating" class="video-thumbnail">
|
||||
<div class="video-overlay"></div>
|
||||
<button class="play-button" aria-label="Play video"></button>
|
||||
</div>
|
||||
|
|
@ -265,7 +308,7 @@
|
|||
<div class="news-articles">
|
||||
<article class="news-card" data-type="news">
|
||||
<a class="news-card-media" href="../en/news/proof-of-means-updated-2026/">
|
||||
<img src="../images/news-proof-of-means.jpg" alt="Proof-of-means amount updated to €507,43 per month" loading="lazy">
|
||||
<img src="../images/news-proof-of-means.webp" alt="Proof-of-means amount updated to €507,43 per month" loading="lazy">
|
||||
<span class="news-badge news-badge--news"><i class="fas fa-bullhorn" aria-hidden="true"></i> News</span>
|
||||
</a>
|
||||
<div class="card-content">
|
||||
|
|
@ -308,7 +351,7 @@
|
|||
<h3>How collaboration makes us better</h3>
|
||||
<p>Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.</p>
|
||||
<div class="author-info">
|
||||
<img src="../images/7-graphicdesigner.webp" alt="Aleksandar Popovski">
|
||||
<img loading="lazy" decoding="async" src="../images/7-graphicdesigner.webp" alt="Aleksandar Popovski">
|
||||
<div>
|
||||
<h4>Aleksandar Popovski</h4>
|
||||
<p>Graphic designer at MSOS</p>
|
||||
|
|
@ -319,7 +362,7 @@
|
|||
<h3>Consectetur vitae ac parturient massa</h3>
|
||||
<p>Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra.</p>
|
||||
<div class="author-info">
|
||||
<img src="../images/11-boy.webp" alt="Another team member">
|
||||
<img loading="lazy" decoding="async" src="../images/11-boy.webp" alt="Another team member">
|
||||
<div>
|
||||
<h4>Aleksandar Popovski</h4>
|
||||
<p>Graphic designer at MSOS</p>
|
||||
|
|
@ -332,7 +375,7 @@
|
|||
<h3>Proud partners</h3>
|
||||
<p>Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.</p>
|
||||
<div class="author-info">
|
||||
<img src="../images/12-girl2.webp" alt="Another partner">
|
||||
<img loading="lazy" decoding="async" src="../images/12-girl2.webp" alt="Another partner">
|
||||
<div>
|
||||
<h4>Aleksandar Popovski</h4>
|
||||
<p>Graphic designer at MSOS</p>
|
||||
|
|
@ -343,7 +386,7 @@
|
|||
<h3>Our collaboration experience</h3>
|
||||
<p>Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra. Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharetra feugiat.</p>
|
||||
<div class="author-info">
|
||||
<img src="../images/10-girl1.webp" alt="Another team member">
|
||||
<img loading="lazy" decoding="async" src="../images/10-girl1.webp" alt="Another team member">
|
||||
<div>
|
||||
<h4>Aleksandar Popovski</h4>
|
||||
<p>Graphic designer at MSOS</p>
|
||||
|
|
@ -367,7 +410,7 @@
|
|||
<div class="join-cta-collage">
|
||||
<div class="join-cta-photo join-cta-photo--1"><img src="../images/event4-img-1.webp" alt="Meet Student Slovenia 2024" loading="lazy"></div>
|
||||
<div class="join-cta-photo join-cta-photo--2"><img src="../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana" loading="lazy"></div>
|
||||
<div class="join-cta-photo join-cta-photo--3"><img src="../images/handball-2025-1.png" alt="Cheering for Macedonia, watching handball together in Slovenia" loading="lazy"></div>
|
||||
<div class="join-cta-photo join-cta-photo--3"><img src="../images/handball-2025-1.webp" alt="Cheering for Macedonia, watching handball together in Slovenia" loading="lazy"></div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
@ -410,9 +453,9 @@
|
|||
</div>
|
||||
<div class="faq-footer">
|
||||
<div class="avatar-group">
|
||||
<img src="../images/11-boy.webp" alt="Avatar 1" class="avatar">
|
||||
<img src="../images/10-girl1.webp" alt="Avatar 2" class="avatar large">
|
||||
<img src="../images/12-girl2.webp" alt="Avatar 3" class="avatar">
|
||||
<img loading="lazy" decoding="async" src="../images/11-boy.webp" alt="Avatar 1" class="avatar">
|
||||
<img loading="lazy" decoding="async" src="../images/10-girl1.webp" alt="Avatar 2" class="avatar large">
|
||||
<img loading="lazy" decoding="async" src="../images/12-girl2.webp" alt="Avatar 3" class="avatar">
|
||||
</div>
|
||||
<h3>Still have questions?</h3>
|
||||
<p>Can’t find the answer you’re looking for? Please chat to our friendly team.</p>
|
||||
|
|
@ -428,7 +471,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -475,6 +518,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>News and updates - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/news/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/news/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/news/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="News and updates - MSOS">
|
||||
<meta property="og:description" content="Everything new at MSOS in one place — events and projects, blog stories, announcements and official updates for Macedonian students in Slovenia.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/news/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="News and updates - MSOS">
|
||||
<meta name="twitter:description" content="Everything new at MSOS in one place — events and projects, blog stories, announcements and official updates for Macedonian students in Slovenia.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -159,7 +202,7 @@
|
|||
<div class="newshub-grid">
|
||||
<article class="newshub-card" data-type="news">
|
||||
<a class="newshub-media" href="../../en/news/proof-of-means-updated-2026/">
|
||||
<img src="../../images/news-proof-of-means.jpg" alt="Proof-of-means amount updated to €507,43 per month" loading="lazy">
|
||||
<img src="../../images/news-proof-of-means.webp" alt="Proof-of-means amount updated to €507,43 per month" loading="lazy">
|
||||
<span class="news-badge news-badge--news"><i class="fas fa-bullhorn" aria-hidden="true"></i> News</span>
|
||||
</a>
|
||||
<div class="newshub-body">
|
||||
|
|
@ -203,7 +246,7 @@
|
|||
</article>
|
||||
<article class="newshub-card" data-type="project">
|
||||
<a class="newshub-media" href="../../en/projects/in-memory-of-the-kochani-victims/">
|
||||
<img src="../../images/kochani-1.png" alt="In Memory of the Victims of the Kochani Tragedy" loading="lazy">
|
||||
<img src="../../images/kochani-1.webp" alt="In Memory of the Victims of the Kochani Tragedy" loading="lazy">
|
||||
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
|
||||
</a>
|
||||
<div class="newshub-body">
|
||||
|
|
@ -225,7 +268,7 @@
|
|||
</article>
|
||||
<article class="newshub-card" data-type="project">
|
||||
<a class="newshub-media" href="../../en/projects/humanitarian-tournament-in-maribor/">
|
||||
<img src="../../images/maribor-tournament-1.png" alt="Humanitarian Sports Tournament: Playing with Heart, Together for Kočani" loading="lazy">
|
||||
<img src="../../images/maribor-tournament-1.webp" alt="Humanitarian Sports Tournament: Playing with Heart, Together for Kočani" loading="lazy">
|
||||
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
|
||||
</a>
|
||||
<div class="newshub-body">
|
||||
|
|
@ -247,7 +290,7 @@
|
|||
</article>
|
||||
<article class="newshub-card" data-type="project">
|
||||
<a class="newshub-media" href="../../en/projects/watching-handball-together-in-slovenia/">
|
||||
<img src="../../images/handball-2025-1.png" alt="Cheering for Macedonia, Watching Handball Together in Slovenia" loading="lazy">
|
||||
<img src="../../images/handball-2025-1.webp" alt="Cheering for Macedonia, Watching Handball Together in Slovenia" loading="lazy">
|
||||
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
|
||||
</a>
|
||||
<div class="newshub-body">
|
||||
|
|
@ -258,7 +301,7 @@
|
|||
</article>
|
||||
<article class="newshub-card" data-type="project">
|
||||
<a class="newshub-media" href="../../en/projects/in-memory-of-frosina-kulakova/">
|
||||
<img src="../../images/frosina-1.png" alt="In Memory of Frosina Kulakova" loading="lazy">
|
||||
<img src="../../images/frosina-1.webp" alt="In Memory of Frosina Kulakova" loading="lazy">
|
||||
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
|
||||
</a>
|
||||
<div class="newshub-body">
|
||||
|
|
@ -280,7 +323,7 @@
|
|||
</article>
|
||||
<article class="newshub-card" data-type="project">
|
||||
<a class="newshub-media" href="../../en/projects/paint-and-wine-at-sunset/">
|
||||
<img src="../../images/paint-wine-1.jpg" alt="Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music" loading="lazy">
|
||||
<img src="../../images/paint-wine-1.webp" alt="Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music" loading="lazy">
|
||||
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
|
||||
</a>
|
||||
<div class="newshub-body">
|
||||
|
|
@ -363,7 +406,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -410,6 +453,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Proof-of-means amount updated to €507,43 per month - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/news/proof-of-means-updated-2026/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/news/proof-of-means-updated-2026/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/news/proof-of-means-updated-2026/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Proof-of-means amount updated to €507,43 per month - MSOS">
|
||||
<meta property="og: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…">
|
||||
<meta property="og:url" content="https://msosorg.com/en/news/proof-of-means-updated-2026/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/news-proof-of-means.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Proof-of-means amount updated to €507,43 per month - MSOS">
|
||||
<meta name="twitter: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…">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/news-proof-of-means.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Proof-of-means amount updated to €507,43 per month","description":"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…","image":"https://msosorg.com/images/news-proof-of-means.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/news/proof-of-means-updated-2026/","datePublished":"2026-08-01","dateModified":"2026-08-01"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"News","item":"https://msosorg.com/en/news/"},{"@type":"ListItem","position":3,"name":"Proof-of-means amount updated to €507,43 per month","item":"https://msosorg.com/en/news/proof-of-means-updated-2026/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -150,7 +195,7 @@
|
|||
<h1>Proof-of-means amount updated to €507,43 per month</h1>
|
||||
<p class="news-article-date">Published 1 August 2026</p>
|
||||
<figure class="news-article-hero">
|
||||
<img src="../../../images/news-proof-of-means.jpg" alt="A cash box filled with euro coins and banknotes">
|
||||
<img fetchpriority="high" src="../../../images/news-proof-of-means.webp" alt="A cash box filled with euro coins and banknotes">
|
||||
<figcaption>Image by <a href="https://pixabay.com/users/alexas_fotos-686414/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=1642989" target="_blank" rel="noopener">Alexa</a> from <a href="https://pixabay.com/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=1642989" target="_blank" rel="noopener">Pixabay</a></figcaption>
|
||||
</figure>
|
||||
<div class="news-article-body">
|
||||
|
|
@ -187,7 +232,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -234,6 +279,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Privacy Policy - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/privacy-policy/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/privacy-policy/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/privacy-policy/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Privacy Policy - MSOS">
|
||||
<meta property="og:description" content="How the Macedonian Student Organisation in Slovenia collects, uses, and protects your personal data.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/privacy-policy/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Privacy Policy - MSOS">
|
||||
<meta name="twitter:description" content="How the Macedonian Student Organisation in Slovenia collects, uses, and protects your personal data.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -252,7 +295,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -299,6 +342,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Humanitarian Sports Tournament: Playing with Heart, Together for Kočani - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/projects/humanitarian-tournament-in-maribor/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/projects/humanitarian-tournament-in-maribor/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Humanitarian Sports Tournament: Playing with Heart, Together for Kočani - MSOS">
|
||||
<meta property="og:description" content="Over 200 students gathered in Maribor, raising €1.000 through sport to support families hit by the Kočani tragedy.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/maribor-tournament-1.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Humanitarian Sports Tournament: Playing with Heart, Together for Kočani - MSOS">
|
||||
<meta name="twitter:description" content="Over 200 students gathered in Maribor, raising €1.000 through sport to support families hit by the Kočani tragedy.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/maribor-tournament-1.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Humanitarian Sports Tournament: Playing with Heart, Together for Kočani","description":"Over 200 students gathered in Maribor, raising €1.000 through sport to support families hit by the Kočani tragedy.","image":"https://msosorg.com/images/maribor-tournament-1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/","datePublished":"2025-04-05","dateModified":"2025-04-05"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Events & projects","item":"https://msosorg.com/en/projects/"},{"@type":"ListItem","position":3,"name":"Humanitarian Sports Tournament: Playing with Heart, Together for Kočani","item":"https://msosorg.com/en/projects/humanitarian-tournament-in-maribor/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -152,14 +197,14 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/maribor-tournament-1.png" alt="The MSOS Maribor team at the humanitarian sports tournament">
|
||||
<img fetchpriority="high" src="../../../images/maribor-tournament-1.webp" alt="The MSOS Maribor team at the humanitarian sports tournament">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
<p>On April 5, 2025, MSOS Maribor organized the first humanitarian sports tournament in the history of our organization. The idea came naturally. After the tragic events in Kočani, many of us felt powerless, but we also knew we had to do something. As students, maybe we could not solve everything, but we could do what we do best: bring people together. Sports became the perfect way to channel our emotions and energy into solidarity.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/maribor-tournament-2.png" alt="A snapshot of the MSOS Maribor team.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/maribor-tournament-2.webp" alt="A snapshot of the MSOS Maribor team.">
|
||||
<figcaption>A snapshot of the MSOS Maribor team.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -168,14 +213,14 @@
|
|||
<p>The event took place at the Leon Štukelj Sports Hall, which came alive with cheering, laughter, and the sound of basketballs and futsal balls bouncing across the courts. From the very beginning, you could feel that this was not just about competition. It was about community.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/maribor-tournament-3.png" alt="Teams lined up and ready for the start of the tournament.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/maribor-tournament-3.webp" alt="Teams lined up and ready for the start of the tournament.">
|
||||
<figcaption>Teams lined up and ready for the start of the tournament.</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>We welcomed 12 basketball teams and 4 futsal teams, made up not only of Macedonian students but also of friends from Serbia, Bosnia and Herzegovina, and Spain. That mix of cultures and languages created a special vibe, proof that solidarity does not stop at national borders. Teams supported each other, rivalries ended in handshakes, and every goal or basket felt like a small victory for the cause we were all there for.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/maribor-tournament-4.png" alt="Students giving their all on the futsal court, turning competition into energy, laughter, and unforgettable moments.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/maribor-tournament-4.webp" alt="Students giving their all on the futsal court, turning competition into energy, laughter, and unforgettable moments.">
|
||||
<figcaption>Students giving their all on the futsal court, turning competition into energy, laughter, and unforgettable moments.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -186,12 +231,12 @@
|
|||
<p>At the end of the tournament, symbolic prizes were awarded to the winners. They were not just trophies. They were a way to honor everyone who gave their time and energy to be part of the event.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/maribor-tournament-5.png" alt="When victory means more than a game, lifted high by the team.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/maribor-tournament-5.webp" alt="When victory means more than a game, lifted high by the team.">
|
||||
<figcaption>When victory means more than a game, lifted high by the team.</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/maribor-tournament-6.png" alt="Warming up before the basketball games, both men’s and women’s teams getting ready for action.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/maribor-tournament-6.webp" alt="Warming up before the basketball games, both men’s and women’s teams getting ready for action.">
|
||||
<figcaption>Warming up before the basketball games, both men’s and women’s teams getting ready for action.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -200,7 +245,7 @@
|
|||
<p>The most important result was not on the scoreboard but in the donations box. Together, we raised €1.010, which was split between two Macedonian families whose children were undergoing treatment in Slovenia. It was not just money. It was a message that they were not alone, that the student community stood with them during the hardest of times.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/maribor-tournament-7.png" alt="High-fives, trophies, and smiles, celebrating victory on and off the court.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/maribor-tournament-7.webp" alt="High-fives, trophies, and smiles, celebrating victory on and off the court.">
|
||||
<figcaption>High-fives, trophies, and smiles, celebrating victory on and off the court.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -211,7 +256,7 @@
|
|||
<p>And maybe most importantly, this was just the beginning. With "Playing with Heart, Together for Kočani", we did not only create a successful humanitarian action. We set the foundation for a tradition that will continue to remind us that together, we can make a difference.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/maribor-tournament-8.png" alt="A memorable moment with the organizing team and the victorious basketball and futsal squads.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/maribor-tournament-8.webp" alt="A memorable moment with the organizing team and the victorious basketball and futsal squads.">
|
||||
<figcaption>A memorable moment with the organizing team and the victorious basketball and futsal squads.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -220,14 +265,14 @@
|
|||
<p>The tournament would not have been possible without the support of our partners and community. We are grateful to the University of Maribor for providing the entire Leon Štukelj Sports Hall free of charge, to Macedonia Trade for taking care of the refreshments and gifts for the winning teams, and to Radenska for supplying water for all participants.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/maribor-tournament-9.png" alt="Thanks to Macedonia Trade and Radenska for supporting the tournament with drinks and refreshments for the players.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/maribor-tournament-9.webp" alt="Thanks to Macedonia Trade and Radenska for supporting the tournament with drinks and refreshments for the players.">
|
||||
<figcaption>Thanks to Macedonia Trade and Radenska for supporting the tournament with drinks and refreshments for the players.</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>A huge thank you also goes to our MSOS Maribor team and volunteers, who worked tirelessly to make this event a reality. And of course, to all the students who showed up not only as players but also as fans, supporters, and friends. Their cheering, laughter, and energy filled the hall and transformed the tournament into more than a competition. It became a moment of unity, solidarity, and joy that none of us will forget.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/maribor-tournament-10.png" alt="The MSOS Maribor team celebrating together after a successful tournament.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/maribor-tournament-10.webp" alt="The MSOS Maribor team celebrating together after a successful tournament.">
|
||||
<figcaption>The MSOS Maribor team celebrating together after a successful tournament.</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
|
@ -255,7 +300,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -302,6 +347,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>In Memory of Frosina Kulakova - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/projects/in-memory-of-frosina-kulakova/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/projects/in-memory-of-frosina-kulakova/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="In Memory of Frosina Kulakova - MSOS">
|
||||
<meta property="og: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…">
|
||||
<meta property="og:url" content="https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/frosina-1.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="In Memory of Frosina Kulakova - MSOS">
|
||||
<meta name="twitter: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…">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/frosina-1.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"In Memory of Frosina Kulakova","description":"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…","image":"https://msosorg.com/images/frosina-1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/","datePublished":"2025-02-08","dateModified":"2025-02-08"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Events & projects","item":"https://msosorg.com/en/projects/"},{"@type":"ListItem","position":3,"name":"In Memory of Frosina Kulakova","item":"https://msosorg.com/en/projects/in-memory-of-frosina-kulakova/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -152,14 +197,14 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/frosina-1.png" alt="Candles and flowers in memory of Frosina Kulakova">
|
||||
<img fetchpriority="high" src="../../../images/frosina-1.webp" alt="Candles and flowers in memory of Frosina Kulakova">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
<p>The news of Frosina’s tragic passing on January 29, 2025, deeply shook students across Slovenia. Even though we are far from home, the pain was shared, and the need to come together was clear. Out of this feeling grew the initiative to organize a peaceful public gathering in Ljubljana, where young people could unite, light candles, lay flowers, and dedicate a moment of silence in her memory.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/frosina-2.png" alt="Students lighting candles in memory of Frosina">
|
||||
<img loading="lazy" decoding="async" src="../../../images/frosina-2.webp" alt="Students lighting candles in memory of Frosina">
|
||||
</figure>
|
||||
|
||||
<h2>A message of unity</h2>
|
||||
|
|
@ -169,7 +214,7 @@
|
|||
<p>By standing side by side in moments like these, we learn that our strength lies not only in our studies and ambitions but also in our ability to support one another when it matters most.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/frosina-3.png" alt="Flowers and candles laid in remembrance">
|
||||
<img loading="lazy" decoding="async" src="../../../images/frosina-3.webp" alt="Flowers and candles laid in remembrance">
|
||||
</figure>
|
||||
|
||||
<h2>Closing thoughts</h2>
|
||||
|
|
@ -204,7 +249,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -251,6 +296,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>In Memory of the Victims of the Kochani Tragedy - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/projects/in-memory-of-the-kochani-victims/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/projects/in-memory-of-the-kochani-victims/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="In Memory of the Victims of the Kochani Tragedy - MSOS">
|
||||
<meta property="og: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.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/kochani-1.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="In Memory of the Victims of the Kochani Tragedy - MSOS">
|
||||
<meta name="twitter: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.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/kochani-1.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"In Memory of the Victims of the Kochani Tragedy","description":"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.","image":"https://msosorg.com/images/kochani-1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/","datePublished":"2025-03-21","dateModified":"2025-03-21"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Events & projects","item":"https://msosorg.com/en/projects/"},{"@type":"ListItem","position":3,"name":"In Memory of the Victims of the Kochani Tragedy","item":"https://msosorg.com/en/projects/in-memory-of-the-kochani-victims/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -152,7 +197,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/kochani-1.png" alt="Candles and flowers at Kongresni trg in memory of the Kochani victims">
|
||||
<img fetchpriority="high" src="../../../images/kochani-1.webp" alt="Candles and flowers at Kongresni trg in memory of the Kochani victims">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
|
|
@ -161,7 +206,7 @@
|
|||
<p>The MSOS community decided to create a moment of solidarity in Slovenia, not as an act of protest or politics, but as a way to express humanity, grief, and unity in the face of tragedy.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/kochani-2.png" alt="Candlelight and flowers at the memorial gathering in Ljubljana">
|
||||
<img loading="lazy" decoding="async" src="../../../images/kochani-2.webp" alt="Candlelight and flowers at the memorial gathering in Ljubljana">
|
||||
</figure>
|
||||
|
||||
<h2>The gathering in Ljubljana</h2>
|
||||
|
|
@ -171,7 +216,7 @@
|
|||
<p>Students, families, and members of the wider community laid flowers and lit candles, creating a sea of light and color that remained untouched for weeks after, as no one dared to disturb the memorial. The atmosphere was solemn, respectful, and deeply emotional.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/kochani-3.png" alt="A sea of candles and flowers left by attendees">
|
||||
<img loading="lazy" decoding="async" src="../../../images/kochani-3.webp" alt="A sea of candles and flowers left by attendees">
|
||||
</figure>
|
||||
|
||||
<h2>A message beyond borders</h2>
|
||||
|
|
@ -181,7 +226,7 @@
|
|||
<p>The event also received coverage in Slovenia, with the MSOS president giving a short interview for RTV Slovenia, reflecting on the importance of standing united in difficult times.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/kochani-4.png" alt="Attendees standing together during the moment of silence">
|
||||
<img loading="lazy" decoding="async" src="../../../images/kochani-4.webp" alt="Attendees standing together during the moment of silence">
|
||||
</figure>
|
||||
|
||||
<h2>Closing words</h2>
|
||||
|
|
@ -214,7 +259,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -261,6 +306,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Projects - Macedonian Student Organisation in Slovenia</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/projects/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/projects/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/projects/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Projects - Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:description" content="The events, projects and moments that bring the Macedonian student community in Slovenia together.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/projects/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Projects - Macedonian Student Organisation in Slovenia">
|
||||
<meta name="twitter:description" content="The events, projects and moments that bring the Macedonian student community in Slovenia together.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -181,7 +224,7 @@
|
|||
<!-- Project: Humanitarian Sports Tournament in Maribor -->
|
||||
<article class="post-card" data-category="events" data-subcategory="sports">
|
||||
<a href="humanitarian-tournament-in-maribor/" class="post-link">
|
||||
<img src="../../images/maribor-tournament-1.png" alt="Humanitarian Sports Tournament in Maribor" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/maribor-tournament-1.webp" alt="Humanitarian Sports Tournament in Maribor" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • 5 Apr 2025 • Event</p>
|
||||
<h3 class="post-title">Humanitarian Sports Tournament in Maribor</h3>
|
||||
|
|
@ -192,7 +235,7 @@
|
|||
<!-- Project: In Memory of the Kochani Victims -->
|
||||
<article class="post-card" data-category="events">
|
||||
<a href="in-memory-of-the-kochani-victims/" class="post-link">
|
||||
<img src="../../images/kochani-1.png" alt="In Memory of the Kochani Victims" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/kochani-1.webp" alt="In Memory of the Kochani Victims" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • 21 Mar 2025 • Event</p>
|
||||
<h3 class="post-title">In Memory of the Kochani Victims</h3>
|
||||
|
|
@ -203,7 +246,7 @@
|
|||
<!-- Project: Paint & Wine at Sunset -->
|
||||
<article class="post-card" data-category="events" data-subcategory="cultural">
|
||||
<a href="paint-and-wine-at-sunset/" class="post-link">
|
||||
<img src="../../images/paint-wine-1.jpg" alt="Paint & Wine at Sunset" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/paint-wine-1.webp" alt="Paint & Wine at Sunset" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • 8 Mar 2025 • Event</p>
|
||||
<h3 class="post-title">Paint & Wine at Sunset</h3>
|
||||
|
|
@ -214,7 +257,7 @@
|
|||
<!-- Project: In Memory of Frosina Kulakova -->
|
||||
<article class="post-card" data-category="events">
|
||||
<a href="in-memory-of-frosina-kulakova/" class="post-link">
|
||||
<img src="../../images/frosina-1.png" alt="In Memory of Frosina Kulakova" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/frosina-1.webp" alt="In Memory of Frosina Kulakova" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • 8 Feb 2025 • Event</p>
|
||||
<h3 class="post-title">In Memory of Frosina Kulakova</h3>
|
||||
|
|
@ -225,7 +268,7 @@
|
|||
<!-- Project: Watching Handball Together in Slovenia -->
|
||||
<article class="post-card" data-category="events" data-subcategory="sports">
|
||||
<a href="watching-handball-together-in-slovenia/" class="post-link">
|
||||
<img src="../../images/handball-2025-1.png" alt="Watching Handball Together in Slovenia" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/handball-2025-1.webp" alt="Watching Handball Together in Slovenia" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • 25 Jan 2025 • Event</p>
|
||||
<h3 class="post-title">Watching Handball Together in Slovenia</h3>
|
||||
|
|
@ -236,7 +279,7 @@
|
|||
<!-- Project: Meet Student Slovenia 2024 -->
|
||||
<article class="post-card" data-category="events" data-subcategory="educational">
|
||||
<a href="meet-student-slovenia-2024/" class="post-link">
|
||||
<img src="../../images/event4-img-1.webp" alt="A group of students at the 'Meet Student Slovenia 2024' event" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/event4-img-1.webp" alt="A group of students at the 'Meet Student Slovenia 2024' event" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • 16 Sep 2024 • Event</p>
|
||||
<h3 class="post-title">Meet Student Slovenia 2024</h3>
|
||||
|
|
@ -247,7 +290,7 @@
|
|||
<!-- Project: Morning Coffee in front of CTK, 2024 -->
|
||||
<article class="post-card" data-category="student-life">
|
||||
<a href="morning-coffee-in-front-of-ctk/" class="post-link">
|
||||
<img src="../../images/event4-image1.webp" alt="Students enjoying coffee and burek in front of CTK library" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/event4-image1.webp" alt="Students enjoying coffee and burek in front of CTK library" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • 8 Jun 2024 • Student Life</p>
|
||||
<h3 class="post-title">Morning Coffee in front of CTK, 2024</h3>
|
||||
|
|
@ -258,7 +301,7 @@
|
|||
<!-- Project: Meet Student Slovenia 2023 -->
|
||||
<article class="post-card" data-category="events" data-subcategory="educational">
|
||||
<a href="meet-student-slovenia-2023/" class="post-link">
|
||||
<img src="../../images/event3-photo-1.webp" alt="Panel discussion at the 'Meet Student Slovenia 2023' event" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt="Panel discussion at the 'Meet Student Slovenia 2023' event" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">MSOS Team • 18 Sep 2023 • Event</p>
|
||||
<h3 class="post-title">Meet Student Slovenia 2023</h3>
|
||||
|
|
@ -269,7 +312,7 @@
|
|||
<!-- Project: Macedonian Student Night -->
|
||||
<article class="post-card" data-category="events" data-subcategory="entertainment">
|
||||
<a href="macedonian-student-night-in-ljubljana/" class="post-link">
|
||||
<img src="../../images/msnl-1.webp" alt="Atmosphere from the Macedonian Student Night in Ljubljana" class="post-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/msnl-1.webp" alt="Atmosphere from the Macedonian Student Night in Ljubljana" class="post-image">
|
||||
<div class="post-content">
|
||||
<p class="post-meta">Kristijan Popovski • 8 Oct 2022 • Event</p>
|
||||
<h3 class="post-title">Macedonian Student Night in Ljubljana</h3>
|
||||
|
|
@ -320,7 +363,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -367,6 +410,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Macedonian Student Night in Ljubljana - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/projects/macedonian-student-night-in-ljubljana/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/projects/macedonian-student-night-in-ljubljana/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Macedonian Student Night in Ljubljana - MSOS">
|
||||
<meta property="og:description" content="From an idea to a party with 500 students, that's how our story began!">
|
||||
<meta property="og:url" content="https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/msnl-1.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Macedonian Student Night in Ljubljana - MSOS">
|
||||
<meta name="twitter:description" content="From an idea to a party with 500 students, that's how our story began!">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/msnl-1.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Macedonian Student Night in Ljubljana","description":"From an idea to a party with 500 students, that's how our story began!","image":"https://msosorg.com/images/msnl-1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/","datePublished":"2022-10-08","dateModified":"2022-10-08"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Events & projects","item":"https://msosorg.com/en/projects/"},{"@type":"ListItem","position":3,"name":"Macedonian Student Night in Ljubljana","item":"https://msosorg.com/en/projects/macedonian-student-night-in-ljubljana/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -180,7 +225,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/msnl-1.webp" alt="Atmosphere from the Macedonian Student Night in Ljubljana">
|
||||
<img fetchpriority="high" src="../../../images/msnl-1.webp" alt="Atmosphere from the Macedonian Student Night in Ljubljana">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
|
|
@ -190,7 +235,7 @@
|
|||
<p>It all began with a simple wish, to gather, get to know each other, and feel Macedonia, even though we were far from it. Kristijan Popovski, then a student at the School of Economics and Business in Ljubljana, shared his idea with a few colleagues, and the response was incredible. In less than two weeks, over 40 students joined the organizing team. Everyone contributed their enthusiasm and time, and the shared spirit and desire to connect turned this spontaneous initiative into an event we would remember for a long time.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/msnl-2.webp" alt="Preparations and meetings for the Macedonian Student Night">
|
||||
<img loading="lazy" decoding="async" src="../../../images/msnl-2.webp" alt="Preparations and meetings for the Macedonian Student Night">
|
||||
<figcaption>Photos from the preparations and meetings for organizing the Macedonian Student Night.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -198,7 +243,7 @@
|
|||
<p>A week before the event, we posted interesting facts about Macedonia every day, its national treasures, music, and culture. Slowly but surely, we built the atmosphere and excitement, not only among Macedonian students but also among many others who wanted to feel our energy.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/msnl-3.webp" alt="Poster where Slovenians learn the Macedonian alphabet">
|
||||
<img loading="lazy" decoding="async" src="../../../images/msnl-3.webp" alt="Poster where Slovenians learn the Macedonian alphabet">
|
||||
<figcaption>Poster with Cyrillic and Latin letters. Slovenians are learning the Macedonian alphabet, while Macedonians are teaching them.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -211,14 +256,14 @@
|
|||
<p>The party started at 8:00 PM and was designed in two parts. The first part was a real gastronomic and cultural journey through Macedonia. Students could try bread with ajvar and white cheese, Macedonian wine, tasty snacks, and traditional drinks. The tables were also filled with other authentic products that reminded everyone of home. All these flavors and aromas were made possible thanks to the support of the Macedonian products store <strong>“Makedonija Trade,”</strong> which selflessly contributed to making this part of the evening truly enjoyable.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/msnl-4.webp" alt="Stands with Macedonian symbols, food, and drinks">
|
||||
<img loading="lazy" decoding="async" src="../../../images/msnl-4.webp" alt="Stands with Macedonian symbols, food, and drinks">
|
||||
<figcaption>Photos of the stands with Macedonian symbols, traditional food, and drinks.</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>In addition to the food, visitors could explore interesting facts about the country, photos of famous Macedonian figures and cultural landmarks, and see traditional costumes and a <strong>gaida</strong> up close. The atmosphere was warm and full of curiosity, like a small exhibition within a large student party.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/msnl-5.webp" alt="Mini quiz about Macedonia">
|
||||
<img loading="lazy" decoding="async" src="../../../images/msnl-5.webp" alt="Mini quiz about Macedonia">
|
||||
<figcaption>Mini quiz with questions about Macedonia, where students in one part of the club are competing.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -226,7 +271,7 @@
|
|||
<p>The evening was enriched by the presence of important guests from the Macedonian community in Slovenia. <strong>The President of the Union of Macedonian Cultural Associations in Slovenia, Mr. Blagoja Nasteski</strong>, joined the event, confirming the importance of such initiatives for preserving the Macedonian spirit and tradition in the diaspora.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/msnl-6.webp" alt="Kristijan and Bisera with Ambassador Zelenkovska and Mr. Nasteski">
|
||||
<img loading="lazy" decoding="async" src="../../../images/msnl-6.webp" alt="Kristijan and Bisera with Ambassador Zelenkovska and Mr. Nasteski">
|
||||
<figcaption>Kristijan and Bisera together with Ambassador Zelenkovska and the President of the Union of Macedonian Associations, Mr. Nasteski</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -243,7 +288,7 @@
|
|||
<p>This night laid the foundation for the Macedonian Student Organization in Slovenia and showed us that with enthusiasm, unity, and a bit of courage, it's possible to create something that brings people together and gives them a sense of home, even when they are far away from it.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/msnl-7.webp" alt="The dedicated team of volunteers after cleaning up the venue">
|
||||
<img loading="lazy" decoding="async" src="../../../images/msnl-7.webp" alt="The dedicated team of volunteers after cleaning up the venue">
|
||||
<figcaption>Photo taken at 4:00 a.m., after finishing and cleaning up the venue together with the dedicated team of volunteers</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
|
@ -252,7 +297,7 @@
|
|||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<img loading="lazy" decoding="async" src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<div class="author-text">
|
||||
<p class="author-name">Kristijan Popovski</p>
|
||||
<p class="author-title">President and Founder</p>
|
||||
|
|
@ -292,7 +337,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -339,6 +384,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,322 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="mk">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Македонска студентска вечер во Љубљана - МСОС</title>
|
||||
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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">
|
||||
|
||||
<!-- Font Awesome (for icons) -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||
|
||||
<!-- Povezava na novo glavno CSS datoteko -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- START_HEADER -->
|
||||
<header class="dropdown-header-navigation">
|
||||
<div class="container">
|
||||
<!-- Logotip je zdaj samostojen element na levi strani -->
|
||||
<a href="../../../en/" class="logo-link">
|
||||
<img src="../../../images/1-logo.png" alt="Macedonian Student Organisation in Slovenia Logo" class="logo-img">
|
||||
</a>
|
||||
|
||||
<!-- Nov ovoj za vse elemente na desni strani -->
|
||||
<div class="header-right-wrapper">
|
||||
<nav>
|
||||
<ul class="navigation desktop-nav">
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">Who We Are</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
|
||||
<li><a href="../../../en/about-us/">Our team</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">What We Do</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/projects/">Events & Projects</a></li>
|
||||
<li><a href="../../../en/blog/">Blog</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">For Students</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
|
||||
<li><a href="../../../en/faq/">FAQs</a></li>
|
||||
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
|
||||
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item"><a href="../../../en/news/">News</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="navigation-actions">
|
||||
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
|
||||
<button class="btn btn-primary">Support MSOS ❤️</button>
|
||||
<div class="language-selector">
|
||||
<div class="current-lang">
|
||||
<i class="fas fa-globe"></i>
|
||||
<span id="current-lang-code">EN</span>
|
||||
<i class="fas fa-chevron-down"></i>
|
||||
</div>
|
||||
<div class="lang-dropdown">
|
||||
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
|
||||
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
|
||||
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Ikona za mobilni meni ostaja ločena za lažje upravljanje -->
|
||||
<div class="mobile-menu-icon">
|
||||
<i class="fas fa-bars"></i>
|
||||
<i class="fas fa-times"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Panel za mobilno navigacijo (struktura ostaja enaka) -->
|
||||
<div class="mobile-nav-panel">
|
||||
<nav>
|
||||
<ul class="navigation mobile-nav">
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">Who We Are</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
|
||||
<li><a href="../../../en/about-us/">Our team</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">What We Do</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/projects/">Events & Projects</a></li>
|
||||
<li><a href="../../../en/blog/">Blog</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">For Students</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
|
||||
<li><a href="../../../en/faq/">FAQs</a></li>
|
||||
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
|
||||
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item"><a href="../../../en/news/">News</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="navigation-actions">
|
||||
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
|
||||
<button class="btn btn-primary">Support MSOS ❤️</button>
|
||||
<div class="language-selector">
|
||||
<button class="current-lang" id="mobile-lang-trigger">
|
||||
<i class="fas fa-globe"></i>
|
||||
<span>EN</span>
|
||||
<i class="fas fa-chevron-right"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modalno okno za izbiro jezika (ostaja enako) -->
|
||||
<div id="language-modal-overlay">
|
||||
<div class="language-modal-content">
|
||||
<div class="language-modal-header">
|
||||
<h3>Select Language</h3>
|
||||
<button id="language-modal-close" aria-label="Close language selection">×</button>
|
||||
</div>
|
||||
<div class="language-modal-body">
|
||||
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
|
||||
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
|
||||
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END_HEADER -->
|
||||
|
||||
<main class="article-page">
|
||||
<article class="article-container">
|
||||
<header class="article-header">
|
||||
<p class="article-publish-date">Објавено на 8 октомври 2022</p>
|
||||
<h1>Македонска студентска вечер во Љубљана</h1>
|
||||
<p class="article-subtitle">Од идеја до журка со 500 студенти, вака започна нашата приказна!</p>
|
||||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../images/msnl-1.webp" alt="Атмосфера од македонската студентска вечер во Љубљана">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
<p>На 8 октомври 2022 година, во срцето на Студентскиот кампус во Љубљана, се одржа првата македонска студентска вечер во Словенија. Под мотото #FeelsLikeHome, повеќе од 500 млади уживаа во македонска музика, вкусна традиционална храна и атмосфера која потсетуваше на дома. Овој настан не беше само журка, беше почеток на една нова приказна, која подоцна ќе прерасне во Македонска студентска организација во Словенија (МСОС).</p>
|
||||
|
||||
<h2>Како една идеја за дружење стана почеток на движење</h2>
|
||||
<p>Сè започна со едноставна желба, да се собереме, да се запознаеме и да ја почувствуваме Македонија, иако сме далеку од неа. Кристијан Поповски, тогаш студент на Економскиот факултет во Љубљана, ја сподели својата идеја со неколку колеги, а одговорот беше неверојатен. За помалку од две недели, преку 40 студенти се пријавија во организацискиот тим. Секој понесе дел од својот ентузијазам и време, а заедничкиот дух и желбата за поврзување ја претворија оваа спонтана иницијатива во настан што долго ќе го паметиме.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-2.webp" alt="Подготовки и состаноци за македонската студентска вечер">
|
||||
<figcaption>Фотографии од подготовките и состаноците за организирање на македонската студентска вечер</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>Од тој момент, секој слободен миг го поминувавме во канцелариите на студентската организација <strong>„Повезани“</strong>, кои ни дадоа голема поддршка во организирањето. Денови и ноќи правевме планови, одржувавме состаноци, пишувавме објави на социјалните мрежи, сè со цел да создадеме настан кој првично мислевме дека ќе привлече, ако имаме среќа, околу 100 посетители.</p>
|
||||
<p>Една недела пред настанот, секој ден објавувавме интересни факти за Македонија, нејзините национални богатства, музика и култура. Полека, но сигурно, ја градевме атмосферата и ентузијазмот, не само кај македонските студенти, туку и кај многу други кои сакаа да ја почувствуваат нашата енергија.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-3.webp" alt="Хамер со испишани кирилични и латинични букви">
|
||||
<figcaption>Хамер со испишани кирилични и латинични букви. Словенците ја учат македонската азбука, додека македонците ги подучуваат.</figcaption>
|
||||
</figure>
|
||||
|
||||
<blockquote class="article-quote">
|
||||
<p>„Организирањето на првата МСОС журка беше уникатно искуство, без сон, амбициозни и вклучени во сè, од логистика до бришење на подот... Среќа што постои Red Bull 😉 (П.с. целиот фрижидер го испивме!)“</p>
|
||||
<footer>, Марко, студент во прва година</footer>
|
||||
</blockquote>
|
||||
|
||||
<h2>Вкусот и мирисот на Македонија во срцето на Љубљана</h2>
|
||||
<p>Журката започна во 20:00 часот и беше замислена во два дела. Првиот дел беше вистинско гастрономско и културно патување низ Македонија. Студентите можеа да пробаат лебчиња со ајвар и биено сирење, македонско вино, вкусни грицки и традиционални пијалоци. На масите имаше изложени и други автентични производи што сите ги потсетуваа на дома. Сите овие вкусови и мириси беа овозможени благодарение на поддршката од продавницата за македонски производи <strong>„Македонија Трејд“</strong>, кои несебично придонесоа овој дел од вечерта да биде вистинско уживање.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-4.webp" alt="Штандови со македонски обележја, традиционална храна и пијалаци">
|
||||
<figcaption>Фотографии од штандовите со македонски обележја, традиционална храна и пијалаци.</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>Покрај храната, посетителите можеа да разгледаат интересни факти за државата, фотографии од познати македонски дејци и културни знаменитости, како и да видат традиционални носии и <strong>гајда</strong> одблиску. Атмосферата беше топла и полна со љубопитност, како мала изложба во рамките на една голема студентска забава.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-5.webp" alt="Мини квиз со прашања за Македонија">
|
||||
<figcaption>Мини квиз со прашања за Македонија, каде студентите во едниот дел од клубот се натпреваруваат</figcaption>
|
||||
</figure>
|
||||
|
||||
<h2>Поддршка од македонската заедница и дипломатијата</h2>
|
||||
<p>Вечерта беше збогатена и со присуството на важни гости од македонската заедница во Словенија. На настанот ни се придружи <strong>претседателот на Сојузот на македонските културни друштва во Словенија, г-н Благоја Настески</strong>, кој со своето присуство ја потврди важноста на ваквите иницијативи за одржување на македонскиот дух и традиција во дијаспората.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-6.webp" alt="Кристијан и Бисера заедно со амбасадорката Зеленковска и претседателот г-н Настески">
|
||||
<figcaption>Кристијан и Бисера заедно со амбасадорката Зеленковска и претседателот на Сојузот на македонски друштва, г-н Настески</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>Посебна чест ни беше да ја пречекаме и <strong>амбасадорката на Северна Македонија во Словенија, г-ѓа Сузана Зеленковска</strong>, која упати топли зборови на охрабрување и поддршка за младите. Нејзиното присуство и интерес за настанот беа дополнителен мотив да продолжиме со нашата мисија за поврзување и афирмација на македонската студентска заедница.</p>
|
||||
<p>Журката беше одлична, со супер енергија што се шири насекаде. Студенти на сите страни и во еден момент владееше мал, но контролиран хаос, вистинско место каде што успеавме да се избориме и да направиме еден навистина одличен настан. Иако ја завршивме журката малку порано, студентите не престанаа уште еден час да пеат заедно со нас, како што го расчистувавме местото. Навистина, ноќ за паметење!</p>
|
||||
|
||||
<blockquote class="article-quote">
|
||||
<p>„Бев дел од тимот за организација и требаше да одржувам ред и мир меѓу студентите, ама кога ми ја пуштија песната ‘Бисер Балкански’ не издржав, па им се приклучив и јас... Тоа беше мојот специјален момент таа вечер!“</p>
|
||||
<footer>, Христијан, студент во втора година</footer>
|
||||
</blockquote>
|
||||
|
||||
<h2>Почеток што ќе го паметиме</h2>
|
||||
<p>Таа вечер не беше само уште една студентска забава, беше моментот кога сфативме дека сме започнале нешто поголемо. Наместо очекуваните 100 гости, во клубот влегоа околу <strong>500 студенти</strong>, а енергијата беше неверојатна. Се создадоа нови пријателства, се слушаа песни што ги пеевме од срце, а македонската култура и традиција беа во прв план цела вечер.</p>
|
||||
<p>Оваа ноќ го постави темелот за Македонската студентска организација во Словенија и ни покажа дека со ентузијазам, заедништво и малку храброст, може да се создаде нешто што ќе ги обедини луѓето и ќе им даде чувство на дом, дури и кога се далеку од него.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-7.webp" alt="Посветениот тим на волонтери по завршувањето на настанот">
|
||||
<figcaption>Фотографија направена во 4 часот наутро, по завршувањето и средувањето на просторот заедно со посветениот тим на волонтери</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<footer class="article-footer">
|
||||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img src="../../images/11-boy.webp" alt="Аватар на Кристијан Поповски">
|
||||
<div class="author-text">
|
||||
<p class="author-name">Кристијан Поповски</p>
|
||||
<p class="author-title">Претседател и основач</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="share-buttons">
|
||||
<button class="btn btn-secondary"><i class="fas fa-link"></i> Копирај линк</button>
|
||||
<a href="#" class="social-icon-btn" aria-label="Сподели на Twitter"><i class="fab fa-twitter"></i></a>
|
||||
<a href="#" class="social-icon-btn" aria-label="Сподели на Facebook"><i class="fab fa-facebook-f"></i></a>
|
||||
<a href="#" class="social-icon-btn" aria-label="Сподели на LinkedIn"><i class="fab fa-linkedin-in"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</article>
|
||||
|
||||
<section class="newsletter-cta">
|
||||
<div class="container">
|
||||
<div class="cta-content">
|
||||
<h2>Не пропуштајте ниту една новост од МСОС</h2>
|
||||
<p>Вести, соопштенија и отворени повици — директно во вашето сандаче.</p>
|
||||
<form class="subscribe-form-bottom">
|
||||
<div class="input-wrapper">
|
||||
<input type="email" placeholder="Внесете ја вашата е-пошта">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Претплати се</button>
|
||||
</form>
|
||||
<p class="privacy-note">Ние се грижиме за вашите податоци во нашата <a href="../../../mk/privacy-policy/">политика за приватност</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<!-- START_FOOTER -->
|
||||
<footer>
|
||||
<div class="footer-container">
|
||||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
Masarykova cesta 24<br>
|
||||
1000 Ljubljana, Slovenia<br>
|
||||
<a href="mailto:info@msosorg.com">info@msosorg.com</a>
|
||||
</p>
|
||||
<div class="social-icons">
|
||||
<a href="https://www.facebook.com/msos.org" aria-label="Facebook" target="_blank" rel="noopener"><i class="fab fa-facebook-f"></i></a>
|
||||
<a href="https://www.instagram.com/msosorg_com" aria-label="Instagram" target="_blank" rel="noopener"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/company/msos-org" aria-label="LinkedIn" target="_blank" rel="noopener"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.youtube.com/@msosorg" aria-label="YouTube" target="_blank" rel="noopener"><i class="fab fa-youtube"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<div class="links-column">
|
||||
<h4>Student guide</h4>
|
||||
<a href="../../../en/student-welcome-guide/">Student welcome guide</a>
|
||||
<a href="../../../en/student-welcome-guide/complete-student-journey/">The whole journey</a>
|
||||
<a href="../../../en/student-welcome-guide/application-deadlines/">Application deadlines</a>
|
||||
<a href="../../../en/student-welcome-guide/evs-application-guide/">Apply through eVŠ</a>
|
||||
<a href="../../../en/student-welcome-guide/student-residence-permit/">Residence permit</a>
|
||||
<a href="../../../en/student-welcome-guide/student-accommodation/">Accommodation</a>
|
||||
</div>
|
||||
<div class="links-column">
|
||||
<h4>Explore</h4>
|
||||
<a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a>
|
||||
<a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a>
|
||||
<a href="../../../en/projects/">Projects and events</a>
|
||||
</div>
|
||||
<div class="links-column">
|
||||
<h4>Organisation</h4>
|
||||
<a href="../../../en/about-us/">About us</a>
|
||||
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
|
||||
<a href="mailto:info@msosorg.com">Contact us</a>
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2026 MSOS. All rights reserved.</p>
|
||||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,347 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="mk">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Македонска студентска вечер во Љубљана - МСОС</title>
|
||||
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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">
|
||||
|
||||
<!-- Font Awesome (for icons) -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||
|
||||
<!-- Povezava na novo glavno CSS datoteko -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- START_HEADER -->
|
||||
<header class="dropdown-header-navigation">
|
||||
<div class="container">
|
||||
<!-- Logotip je zdaj samostojen element na levi strani -->
|
||||
<a href="../../../en/" class="logo-link">
|
||||
<img src="../../../images/1-logo.png" alt="Macedonian Student Organisation in Slovenia Logo" class="logo-img">
|
||||
</a>
|
||||
|
||||
<!-- Nov ovoj za vse elemente na desni strani -->
|
||||
<div class="header-right-wrapper">
|
||||
<nav>
|
||||
<ul class="navigation desktop-nav">
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">Who We Are</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
|
||||
<li><a href="../../../en/about-us/">Our team, mission, vision & core values</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">What We Do</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/projects/">Events & Projects</a></li>
|
||||
<li><a href="#">Blog</a></li>
|
||||
<li><a href="#">Gallery</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">Get Involved</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="#">Become a member</a></li>
|
||||
<li><a href="#">Support MSOS</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">For Students</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="#">Student Welcome Guide</a></li>
|
||||
<li><a href="#">Mentorship Programme</a></li>
|
||||
<li><a href="#">FAQs</a></li>
|
||||
<li><a href="#">Get to know Slovenia</a></li>
|
||||
<li><a href="#">Get to know North Macedonia</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">News</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="#">Announcements</a></li>
|
||||
<li><a href="#">Open calls</a></li>
|
||||
<li><a href="#">Press releases</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="navigation-actions">
|
||||
<button class="btn btn-secondary">Become a member</button>
|
||||
<button class="btn btn-primary">Donate</button>
|
||||
<div class="language-selector">
|
||||
<div class="current-lang">
|
||||
<i class="fas fa-globe"></i>
|
||||
<span id="current-lang-code">EN</span>
|
||||
<i class="fas fa-chevron-down"></i>
|
||||
</div>
|
||||
<div class="lang-dropdown">
|
||||
<a href="#" data-lang="si">Slovenščina (SI)</a>
|
||||
<a href="#" data-lang="en">English (EN)</a>
|
||||
<a href="#" data-lang="mk">Македонски (MK)</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Ikona za mobilni meni ostaja ločena za lažje upravljanje -->
|
||||
<div class="mobile-menu-icon">
|
||||
<i class="fas fa-bars"></i>
|
||||
<i class="fas fa-times"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Panel za mobilno navigacijo (struktura ostaja enaka) -->
|
||||
<div class="mobile-nav-panel">
|
||||
<nav>
|
||||
<ul class="navigation mobile-nav">
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">Who We Are</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
|
||||
<li><a href="../../../en/about-us/">Our team, mission, vision & core values</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">What We Do</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="../../../en/projects/">Events & Projects</a></li>
|
||||
<li><a href="#">Blog</a></li>
|
||||
<li><a href="#">Gallery</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">Get Involved</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="#">Become a member</a></li>
|
||||
<li><a href="#">Support MSOS</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">For Students</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="#">Student Welcome Guide</a></li>
|
||||
<li><a href="#">Mentorship Programme</a></li>
|
||||
<li><a href="#">FAQs</a></li>
|
||||
<li><a href="#">Get to know Slovenia</a></li>
|
||||
<li><a href="#">Get to know North Macedonia</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="menu-item menu-item-has-children">
|
||||
<a href="#">News</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="#">Announcements</a></li>
|
||||
<li><a href="#">Open calls</a></li>
|
||||
<li><a href="#">Press releases</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="navigation-actions">
|
||||
<button class="btn btn-secondary">Become a member</button>
|
||||
<button class="btn btn-primary">Donate</button>
|
||||
<div class="language-selector">
|
||||
<button class="current-lang" id="mobile-lang-trigger">
|
||||
<i class="fas fa-globe"></i>
|
||||
<span>EN</span>
|
||||
<i class="fas fa-chevron-right"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modalno okno za izbiro jezika (ostaja enako) -->
|
||||
<div id="language-modal-overlay">
|
||||
<div class="language-modal-content">
|
||||
<div class="language-modal-header">
|
||||
<h3>Select Language</h3>
|
||||
<button id="language-modal-close" aria-label="Close language selection">×</button>
|
||||
</div>
|
||||
<div class="language-modal-body">
|
||||
<a href="#" data-lang="si">Slovenščina (SI)</a>
|
||||
<a href="#" data-lang="en" class="active-lang">English (EN)</a>
|
||||
<a href="#" data-lang="mk">Македонски (MK)</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END_HEADER -->
|
||||
|
||||
<main class="article-page">
|
||||
<article class="article-container">
|
||||
<header class="article-header">
|
||||
<p class="article-publish-date">Објавено на 8 октомври 2022</p>
|
||||
<h1>Македонска студентска вечер во Љубљана</h1>
|
||||
<p class="article-subtitle">Од идеја до журка со 500 студенти – вака започна нашата приказна!</p>
|
||||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../images/msnl-1.webp" alt="Атмосфера од македонската студентска вечер во Љубљана">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
<p>На 8 октомври 2022 година, во срцето на Студентскиот кампус во Љубљана, се одржа првата македонска студентска вечер во Словенија. Под мотото #FeelsLikeHome, повеќе од 500 млади уживаа во македонска музика, вкусна традиционална храна и атмосфера која потсетуваше на дома. Овој настан не беше само журка – беше почеток на една нова приказна, која подоцна ќе прерасне во Македонска студентска организација во Словенија (МСОС).</p>
|
||||
|
||||
<h2>Како една идеја за дружење стана почеток на движење</h2>
|
||||
<p>Сè започна со едноставна желба – да се собереме, да се запознаеме и да ја почувствуваме Македонија, иако сме далеку од неа. Кристијан Поповски, тогаш студент на Економскиот факултет во Љубљана, ја сподели својата идеја со неколку колеги, а одговорот беше неверојатен. За помалку од две недели, преку 40 студенти се пријавија во организацискиот тим. Секој понесе дел од својот ентузијазам и време, а заедничкиот дух и желбата за поврзување ја претворија оваа спонтана иницијатива во настан што долго ќе го паметиме.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-2.webp" alt="Подготовки и состаноци за македонската студентска вечер">
|
||||
<figcaption>Фотографии од подготовките и состаноците за организирање на македонската студентска вечер</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>Од тој момент, секој слободен миг го поминувавме во канцелариите на студентската организација <strong>„Повезани“</strong>, кои ни дадоа голема поддршка во организирањето. Денови и ноќи правевме планови, одржувавме состаноци, пишувавме објави на социјалните мрежи – сè со цел да создадеме настан кој првично мислевме дека ќе привлече, ако имаме среќа, околу 100 посетители.</p>
|
||||
<p>Една недела пред настанот, секој ден објавувавме интересни факти за Македонија, нејзините национални богатства, музика и култура. Полека, но сигурно, ја градевме атмосферата и ентузијазмот, не само кај македонските студенти, туку и кај многу други кои сакаа да ја почувствуваат нашата енергија.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-3.webp" alt="Хамер со испишани кирилични и латинични букви">
|
||||
<figcaption>Хамер со испишани кирилични и латинични букви. Словенците ја учат македонската азбука, додека македонците ги подучуваат.</figcaption>
|
||||
</figure>
|
||||
|
||||
<blockquote class="article-quote">
|
||||
<p>„Организирањето на првата МСОС журка беше уникатно искуство – без сон, амбициозни и вклучени во сè, од логистика до бришење на подот... Среќа што постои Red Bull 😉 (П.с. целиот фрижидер го испивме!)“</p>
|
||||
<footer>— Марко – студент во прва година</footer>
|
||||
</blockquote>
|
||||
|
||||
<h2>Вкусот и мирисот на Македонија во срцето на Љубљана</h2>
|
||||
<p>Журката започна во 20:00 часот и беше замислена во два дела. Првиот дел беше вистинско гастрономско и културно патување низ Македонија. Студентите можеа да пробаат лебчиња со ајвар и биено сирење, македонско вино, вкусни грицки и традиционални пијалоци. На масите имаше изложени и други автентични производи што сите ги потсетуваа на дома. Сите овие вкусови и мириси беа овозможени благодарение на поддршката од продавницата за македонски производи <strong>„Македонија Трејд“</strong>, кои несебично придонесоа овој дел од вечерта да биде вистинско уживање.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-4.webp" alt="Штандови со македонски обележја, традиционална храна и пијалаци">
|
||||
<figcaption>Фотографии од штандовите со македонски обележја, традиционална храна и пијалаци.</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>Покрај храната, посетителите можеа да разгледаат интересни факти за државата, фотографии од познати македонски дејци и културни знаменитости, како и да видат традиционални носии и <strong>гајда</strong> одблиску. Атмосферата беше топла и полна со љубопитност – како мала изложба во рамките на една голема студентска забава.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-5.webp" alt="Мини квиз со прашања за Македонија">
|
||||
<figcaption>Мини квиз со прашања за Македонија, каде студентите во едниот дел од клубот се натпреваруваат</figcaption>
|
||||
</figure>
|
||||
|
||||
<h2>Поддршка од македонската заедница и дипломатијата</h2>
|
||||
<p>Вечерта беше збогатена и со присуството на важни гости од македонската заедница во Словенија. На настанот ни се придружи <strong>претседателот на Сојузот на македонските културни друштва во Словенија, г-н Благоја Настески</strong>, кој со своето присуство ја потврди важноста на ваквите иницијативи за одржување на македонскиот дух и традиција во дијаспората.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-6.webp" alt="Кристијан и Бисера заедно со амбасадорката Зеленковска и претседателот г-н Настески">
|
||||
<figcaption>Кристијан и Бисера заедно со амбасадорката Зеленковска и претседателот на Сојузот на македонски друштва, г-н Настески</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>Посебна чест ни беше да ја пречекаме и <strong>амбасадорката на Северна Македонија во Словенија, г-ѓа Сузана Зеленковска</strong>, која упати топли зборови на охрабрување и поддршка за младите. Нејзиното присуство и интерес за настанот беа дополнителен мотив да продолжиме со нашата мисија за поврзување и афирмација на македонската студентска заедница.</p>
|
||||
<p>Журката беше одлична, со супер енергија што се шири насекаде. Студенти на сите страни и во еден момент владееше мал, но контролиран хаос – вистинско место каде што успеавме да се избориме и да направиме еден навистина одличен настан. Иако ја завршивме журката малку порано, студентите не престанаа уште еден час да пеат заедно со нас, како што го расчистувавме местото. Навистина, ноќ за паметење!</p>
|
||||
|
||||
<blockquote class="article-quote">
|
||||
<p>„Бев дел од тимот за организација и требаше да одржувам ред и мир меѓу студентите, ама кога ми ја пуштија песната ‘Бисер Балкански’ не издржав – па им се приклучив и јас... Тоа беше мојот специјален момент таа вечер!“</p>
|
||||
<footer>— Христијан – студент во втора година</footer>
|
||||
</blockquote>
|
||||
|
||||
<h2>Почеток што ќе го паметиме</h2>
|
||||
<p>Таа вечер не беше само уште една студентска забава – беше моментот кога сфативме дека сме започнале нешто поголемо. Наместо очекуваните 100 гости, во клубот влегоа околу <strong>500 студенти</strong>, а енергијата беше неверојатна. Се создадоа нови пријателства, се слушаа песни што ги пеевме од срце, а македонската култура и традиција беа во прв план цела вечер.</p>
|
||||
<p>Оваа ноќ го постави темелот за Македонската студентска организација во Словенија и ни покажа дека со ентузијазам, заедништво и малку храброст, може да се создаде нешто што ќе ги обедини луѓето и ќе им даде чувство на дом – дури и кога се далеку од него.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../images/msnl-7.webp" alt="Посветениот тим на волонтери по завршувањето на настанот">
|
||||
<figcaption>Фотографија направена во 4 часот наутро, по завршувањето и средувањето на просторот заедно со посветениот тим на волонтери</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<footer class="article-footer">
|
||||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img src="../../images/11-boy.webp" alt="Аватар на Кристијан Поповски">
|
||||
<div class="author-text">
|
||||
<p class="author-name">Кристијан Поповски</p>
|
||||
<p class="author-title">Претседател и основач</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="share-buttons">
|
||||
<button class="btn btn-secondary"><i class="fas fa-link"></i> Копирај линк</button>
|
||||
<a href="#" class="social-icon-btn" aria-label="Сподели на Twitter"><i class="fab fa-twitter"></i></a>
|
||||
<a href="#" class="social-icon-btn" aria-label="Сподели на Facebook"><i class="fab fa-facebook-f"></i></a>
|
||||
<a href="#" class="social-icon-btn" aria-label="Сподели на LinkedIn"><i class="fab fa-linkedin-in"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</article>
|
||||
|
||||
<section class="newsletter-cta">
|
||||
<div class="container">
|
||||
<div class="cta-content">
|
||||
<h2>Придружете се на 2.000+ претплатници</h2>
|
||||
<p>Останете во тек со сè што треба да знаете.</p>
|
||||
<form class="subscribe-form-bottom">
|
||||
<div class="input-wrapper">
|
||||
<input type="email" placeholder="Внесете ја вашата е-пошта">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Претплати се</button>
|
||||
</form>
|
||||
<p class="privacy-note">Ние се грижиме за вашите податоци во нашата <a href="#">политика за приватност</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<!-- START_FOOTER -->
|
||||
<footer>
|
||||
<div class="footer-container">
|
||||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p>
|
||||
Masarykova cesta 24<br>
|
||||
1000 Ljubljana, Slovenia<br>
|
||||
+389 02 123 4567<br>
|
||||
info.msosorg@gmail.com
|
||||
</p>
|
||||
<div class="social-icons">
|
||||
<a href="#" aria-label="Facebook"><i class="fab fa-facebook-f"></i></a>
|
||||
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
|
||||
<a href="#" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<div class="links-column">
|
||||
<h4>For students</h4>
|
||||
<a href="#">Blog</a>
|
||||
<a href="#">Gallery</a>
|
||||
<a href="#">FAQs</a>
|
||||
<a href="#">Brochure</a>
|
||||
</div>
|
||||
<div class="links-column">
|
||||
<h4>Projects</h4>
|
||||
<a href="#">Upcoming</a>
|
||||
<a href="#">Previous</a>
|
||||
</div>
|
||||
<div class="links-column">
|
||||
<h4>Organisation</h4>
|
||||
<a href="#">About us</a>
|
||||
<a href="#">Contact</a>
|
||||
<a href="#">Documentation</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="footer-bottom">
|
||||
<p>© MSOS org 2023 All rights reserved.</p>
|
||||
<div class="legal-links">
|
||||
<a href="#">Privacy policy</a>
|
||||
<a href="#">Cookie Policy</a>
|
||||
<a href="#">Legal Terms</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="../../../main.js"></script>
|
||||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Meet Student Slovenia 2023 - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/projects/meet-student-slovenia-2023/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/projects/meet-student-slovenia-2023/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/projects/meet-student-slovenia-2023/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Meet Student Slovenia 2023 - MSOS">
|
||||
<meta property="og:description" content="Through honest first-hand stories, future students received support for their first step towards their new home.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/projects/meet-student-slovenia-2023/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/event3-photo-1.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Meet Student Slovenia 2023 - MSOS">
|
||||
<meta name="twitter:description" content="Through honest first-hand stories, future students received support for their first step towards their new home.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/event3-photo-1.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Meet Student Slovenia 2023","description":"Through honest first-hand stories, future students received support for their first step towards their new home.","image":"https://msosorg.com/images/event3-photo-1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/projects/meet-student-slovenia-2023/","datePublished":"2023-09-18","dateModified":"2023-09-18"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Events & projects","item":"https://msosorg.com/en/projects/"},{"@type":"ListItem","position":3,"name":"Meet Student Slovenia 2023","item":"https://msosorg.com/en/projects/meet-student-slovenia-2023/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -183,7 +228,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/event3-photo-1.webp" alt="Panel discussion at the 'Meet Student Slovenia 2023' event">
|
||||
<img fetchpriority="high" src="../../../images/event3-photo-1.webp" alt="Panel discussion at the 'Meet Student Slovenia 2023' event">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
|
|
@ -193,7 +238,7 @@
|
|||
<p>Instead of dry information, students had the opportunity to hear real stories, from those who are already walking the same path. Students from Ljubljana, Maribor, and Koper talked about their challenges, first impressions, funny situations, and moments when community support was crucial. And the audience? They absorbed everything with great attention, because exactly those questions that are never written in brochures, here they received honest answers.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event3-photo-2.webp" alt="Participants of the panel discussion">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event3-photo-2.webp" alt="Participants of the panel discussion">
|
||||
<figcaption>Igor Arsov from the University of Primorska recounts his student experience at the Faculty of Management.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -201,12 +246,12 @@
|
|||
<p>Our members Kiara Lazić, Angel Naumov, Klimentina Čapovska, and Igor Arsov appeared on stage, each with their own story, their own faculty, their own city. Together with moderator Leon Šumanski and host Vasil Hanџiski, they transformed the panel into a real conversation that felt more like a friendly get-together than a formal discussion. They talked about exams, new friendships, life in student dorms, and how important it is not to give up even when things seem hardest.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event3-photo-3.webp" alt="Vasil Hanџiski at the opening of the event">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event3-photo-3.webp" alt="Vasil Hanџiski at the opening of the event">
|
||||
<figcaption>Photograph from the opening of the event with the host Vasil Hanџiski.</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event3-photo-4.webp" alt="The audience at the event">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event3-photo-4.webp" alt="The audience at the event">
|
||||
<figcaption>Photograph of the event participants. We were a little surprised by the interest, but somehow we managed to fit everyone!♡</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -215,15 +260,15 @@
|
|||
<p>At the event, we received significant support and assistance from Melita Sekulovska in organizing the space and Aleksandar Popovski in designing the organization's website. We sincerely thanked them for their dedicated work, as well as the event coordinator, Lea Janačkovska, who made this event extraordinary.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event3-photo-5.webp" alt="Mr. Branko Gregović and H.E. Gregor Presker">
|
||||
<img src="../../../images/event3-photo-6.webp" alt="Kristijan Popovski, Melita Sekulovska, Lea Janačkovska, Marija Koštrevska and Aleksandar Popovski with certificates of appreciation">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event3-photo-5.webp" alt="Mr. Branko Gregović and H.E. Gregor Presker">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event3-photo-6.webp" alt="Kristijan Popovski, Melita Sekulovska, Lea Janačkovska, Marija Koštrevska and Aleksandar Popovski with certificates of appreciation">
|
||||
<figcaption>The top two pictures show Mr. Branko Greganović, Chairman of the Management Board of NLB Bank Skopje, and on the right is H.E. the Ambassador of the Republic of Slovenia in North Macedonia, Mr. Gregor Presker. The bottom pictures show the President Kristijan Popovski, Melita Sekulovska, Lea Janačkovska, Marija Koštrevska, and Aleksandar Popovski.</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>With the help of Dijag doo company, we prepared two plaques for the Embassy and NLB Bank as a sign of gratitude for all the help and support they provided.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event3-photo-7.webp" alt="Plaques for NLB Bank Skopje and the Embassy of the Republic of Slovenia">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event3-photo-7.webp" alt="Plaques for NLB Bank Skopje and the Embassy of the Republic of Slovenia">
|
||||
<figcaption>Photograph of the plaques we presented to NLB Bank Skopje and the Embassy of the Republic of Slovenia in North Macedonia.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -231,7 +276,7 @@
|
|||
<p>Because this event was not just another presentation. It was a hand extended to future students, a message that they are not alone, that a community is already waiting for them. Some left with new friends, others with concrete answers to questions that had bothered them for months. But everyone left with the same feeling: that Slovenia is no longer an unknown place, but a new home where they will be part of something bigger.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event3-photo-8.webp" alt="Attendees at the event">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event3-photo-8.webp" alt="Attendees at the event">
|
||||
<figcaption>Photographs of the attendees at the event!</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -244,7 +289,7 @@
|
|||
<p>A special moment of the event was the address by the Consul of the Embassy of the Republic of Slovenia in North Macedonia, Mr. Martin Glazar. He briefly presented the most important steps of the process for obtaining a temporary residence permit, one of the biggest concerns and challenges for all foreign students in Slovenia. In this way, future students gained a clearer picture of what awaits them and how to more easily deal with administrative procedures.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event3-photo-9.webp" alt="The Consul introducing students to the process of obtaining a temporary residence permit">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event3-photo-9.webp" alt="The Consul introducing students to the process of obtaining a temporary residence permit">
|
||||
<figcaption>Photograph of the consul introducing students in an interesting way to the process of obtaining a temporary residence permit!</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -252,7 +297,7 @@
|
|||
<p>Not everyone managed to be present in the hall, but that's why we made sure no one was left without this experience. We broadcast the event live through our Facebook page, and the recording is still available. If you want to experience the atmosphere and hear the stories first-hand, you can watch the entire event at this link here.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event3-photo-10.webp" alt="Poster for the 'Meet Student Slovenia' event">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event3-photo-10.webp" alt="Poster for the 'Meet Student Slovenia' event">
|
||||
<figcaption>Photograph of the event poster!</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -269,7 +314,7 @@
|
|||
<p>Thanks to everyone who was part of this event, and to future students, we say: your story in Slovenia is just beginning, and we are here to be a part of it.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event3-photo-11.png" alt="A small part of the MSOS team">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event3-photo-11.png" alt="A small part of the MSOS team">
|
||||
<figcaption>Photo of a small part of the team because we forgot to take a group photo!🤪</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
|
@ -278,7 +323,7 @@
|
|||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<img loading="lazy" decoding="async" src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<div class="author-text">
|
||||
<p class="author-name">Kristijan Popovski</p>
|
||||
<p class="author-title">President and Founder</p>
|
||||
|
|
@ -318,7 +363,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -365,6 +410,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Meet Student Slovenia 2024 - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/projects/meet-student-slovenia-2024/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/projects/meet-student-slovenia-2024/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/projects/meet-student-slovenia-2024/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Meet Student Slovenia 2024 - MSOS">
|
||||
<meta property="og:description" content="When student stories turn into the first step towards a new home.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/projects/meet-student-slovenia-2024/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/event4-img-1.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Meet Student Slovenia 2024 - MSOS">
|
||||
<meta name="twitter:description" content="When student stories turn into the first step towards a new home.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/event4-img-1.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Meet Student Slovenia 2024","description":"When student stories turn into the first step towards a new home.","image":"https://msosorg.com/images/event4-img-1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/projects/meet-student-slovenia-2024/","datePublished":"2024-09-16","dateModified":"2024-09-16"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Events & projects","item":"https://msosorg.com/en/projects/"},{"@type":"ListItem","position":3,"name":"Meet Student Slovenia 2024","item":"https://msosorg.com/en/projects/meet-student-slovenia-2024/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -182,7 +227,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/event4-img-1.webp" alt="A group of students at the 'Meet Student Slovenia 2024' event">
|
||||
<img fetchpriority="high" src="../../../images/event4-img-1.webp" alt="A group of students at the 'Meet Student Slovenia 2024' event">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
|
|
@ -192,12 +237,12 @@
|
|||
<p>Our goal was never to create "dry presentations." Instead, we organized a panel, a real conversation with four students who are already living the Slovenian student life. Marija Koštrevska from the University of Ljubljana, Vasil Hanџiski from the University of Maribor, Sofija Matovska from the University of Nova Gorica, and Igor Arsov from the University of Primorska spoke about everything: the first days away from home, how to find accommodation, what student "boni" (subsidized meals) are, and what it's like to build a new circle of friends. Everyone shared something of their own, and the audience asked questions and participated, just like a coffee chat.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-2.webp" alt="Panel discussion with speakers">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-2.webp" alt="Panel discussion with speakers">
|
||||
<figcaption>Photograph of the moderator and panelists in the following order: Klimentina Čapovska (left, moderator), Vasil Hanџiski, Marija Koštrevska, Igor Arsov, and Sofija Matovska.</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-3.webp" alt="Marija Koštrevska and Sofija Matovska sharing their student experiences in Slovenia.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-3.webp" alt="Marija Koštrevska and Sofija Matovska sharing their student experiences in Slovenia.">
|
||||
<figcaption>Marija Koštrevska (in the upper picture) and Sofija Matovska (in the lower picture) are recounting their student experiences in Slovenia.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -205,11 +250,11 @@
|
|||
<p>This evening was not just an exchange of information. It was a moment when future students understood that they are not alone in their worries and fears. Every question received an answer from experience, every dilemma was resolved with a real-life example. Many left encouraged, with new friends, and with the feeling that Slovenia is no longer so distant and unknown.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-4.webp" alt="Event host, coordinator, presenter, and representatives of the Embassy and partners.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-4.webp" alt="Event host, coordinator, presenter, and representatives of the Embassy and partners.">
|
||||
<figcaption>In the photos: Marko Ivanovski, event host (top-left), Lea Janačkovska, coordinator (top-center), Marko Arsov, presenter (top-right). The bottom picture shows representatives of the Embassy, the Management Board of NLB Bank, and the Management Board of MSOS.</figcaption>
|
||||
</figure>
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-5.webp" alt="Beautiful moments captured by the photographer.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-5.webp" alt="Beautiful moments captured by the photographer.">
|
||||
<figcaption>Beautiful moments of future and current students captured by the best photographer, Hristina Trajkovska.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -217,12 +262,12 @@
|
|||
<p>"Meet Student Slovenia 2024" would not have looked this way without the help of our partners and friends. We extend great gratitude to the Embassy of the Republic of Slovenia in North Macedonia, NLB Bank Skopje as the patron and main sponsor of the entire event, and Capital Financial Center, who with their support made it possible for the event to be realized at this high level.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-6.webp" alt="Newly printed MSOS stickers">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-6.webp" alt="Newly printed MSOS stickers">
|
||||
<figcaption>Photograph of the newly printed MSOS stickers.</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-7.webp" alt="Handing over flowers as a thank you to the Embassy, Capital Financial Center and NLB Bank Skopje">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-7.webp" alt="Handing over flowers as a thank you to the Embassy, Capital Financial Center and NLB Bank Skopje">
|
||||
<figcaption>Photograph from the handing over of flowers as a sign of gratitude to the Embassy, Capital Financial Center, and NLB Bank Skopje.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -230,7 +275,7 @@
|
|||
<p>This time, the memories of the evening are thanks to Hristina Trakovska, who was the photographer and made sure all those moments were captured so we can relive them again through photographs.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-8.webp" alt="Welcome speech by H.E. Ambassador Mr. Gregor Presker.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-8.webp" alt="Welcome speech by H.E. Ambassador Mr. Gregor Presker.">
|
||||
<figcaption>Photograph of the welcome speech by H.E. Ambassador Mr. Gregor Presker.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -238,7 +283,7 @@
|
|||
<p>Because this event was not just another presentation. It was a hand extended to future students, a message that they are not alone, that a community is already waiting for them. Some left with new friends, others with concrete answers to questions that had bothered them for months. But everyone left with the same feeling: that Slovenia is no longer an unknown place, but a new home where they will be part of something bigger.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-9.webp" alt="Attendees asking questions to the panelists">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-9.webp" alt="Attendees asking questions to the panelists">
|
||||
<figcaption>Moments when the participants ask questions to the panelists! 😌✨</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -250,7 +295,7 @@
|
|||
</div>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-10.webp" alt="Poster for the 'Meet Student Slovenia' event">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-10.webp" alt="Poster for the 'Meet Student Slovenia' event">
|
||||
<figcaption>Photograph of the event poster!</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -260,11 +305,11 @@
|
|||
<p>P.S. Every year after a successfully organized event, the MSOS team traditionally heads to the nearest tavern, for an evening full of socializing, singing, and emotions! 😊 That's why it's worth being part of our team! Join us.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-11.webp" alt="The team behind the event.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-11.webp" alt="The team behind the event.">
|
||||
<figcaption>Photograph of the team behind the event! This year we arranged a team photo in advance because last year we forgot to take one together! 🫣</figcaption>
|
||||
</figure>
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-img-12.webp" alt="Team dinner after the event.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-12.webp" alt="Team dinner after the event.">
|
||||
<figcaption>Photograph from the team dinner after a successfully completed event!</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -274,7 +319,7 @@
|
|||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<img loading="lazy" decoding="async" src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<div class="author-text">
|
||||
<p class="author-name">Kristijan Popovski</p>
|
||||
<p class="author-title">President and Founder</p>
|
||||
|
|
@ -314,7 +359,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -361,6 +406,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/projects/morning-coffee-in-front-of-ctk/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/projects/morning-coffee-in-front-of-ctk/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles">
|
||||
<meta property="og:description" content="When exams somehow become easier with Saturday morning coffee, burek, and good company in at CTK!">
|
||||
<meta property="og:url" content="https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/event4-image1.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles">
|
||||
<meta name="twitter:description" content="When exams somehow become easier with Saturday morning coffee, burek, and good company in at CTK!">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/event4-image1.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles","description":"When exams somehow become easier with Saturday morning coffee, burek, and good company in at CTK!","image":"https://msosorg.com/images/event4-image1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/","datePublished":"2024-06-08","dateModified":"2024-06-08"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Events & projects","item":"https://msosorg.com/en/projects/"},{"@type":"ListItem","position":3,"name":"Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles","item":"https://msosorg.com/en/projects/morning-coffee-in-front-of-ctk/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -180,7 +225,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/event4-image1.webp" alt="Students enjoying coffee and burek in front of CTK library.">
|
||||
<img fetchpriority="high" src="../../../images/event4-image1.webp" alt="Students enjoying coffee and burek in front of CTK library.">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
|
|
@ -190,19 +235,19 @@
|
|||
<p>The exam session always brings stress, hours and hours of studying, conversations revolving only around exams, first and second attempts, passed or not, some taking the exam for the first time, and some for the fifth time. That's why we decided to take a short break to catch our breath: to relax, to laugh, and to remind ourselves that we're in this study stress together.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-image2.webp" alt="Students lining up in front of the CTK library building.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-image2.webp" alt="Students lining up in front of the CTK library building.">
|
||||
<figcaption>Hundreds of students lined up in front of CTK, waiting even before opening to secure a spot in the library on time.</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>With a cup of hot coffee in hand, and thanks to <strong>Burek Olimpija</strong>, we enjoyed delicious burek with meat and with cheese. We also tried to bring in a bit of fun, we invited students to bring their own cups, and there was a prize for the most creative ones.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-image3.webp" alt="A student smiling while eating a piece of burek.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-image3.webp" alt="A student smiling while eating a piece of burek.">
|
||||
<figcaption>Free warm burek, the secret formula for solving even the toughest mathematical problems 😉</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-image4.webp" alt="A group of students with hot coffee posing for the camera.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-image4.webp" alt="A group of students with hot coffee posing for the camera.">
|
||||
<figcaption>A group of students with hot coffee, posing for the camera.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -211,7 +256,7 @@
|
|||
<p>The reactions were instant, students rushed to write, and the answers were everything but boring: from "chaotic" and “We want to sleep! (not in CTK)!" to "chill", "stressed", "exhausted", "happy" and "sleepy". In other words, a whole spectrum of student emotions, honestly poured into just a few words.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-image5.webp" alt="A white board with handwritten student answers about their feelings during the exam period.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-image5.webp" alt="A white board with handwritten student answers about their feelings during the exam period.">
|
||||
<figcaption>Witty and sincere answers on the big question boards at CTK.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -222,14 +267,14 @@
|
|||
<p>Around 150 people visited the joint stand of MSOS, Skupina Povezani, and CTK to hang out, have coffee, grab a snack, and exchange stories among books and deadlines. The event took place in an excellent atmosphere, lots of smiles, new acquaintances, and a small reminder that even in the most stressful periods, there's always time for coffee and good company.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-image6.webp" alt="Students gathered at the joint stand during the event.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-image6.webp" alt="Students gathered at the joint stand during the event.">
|
||||
<figcaption>Part of the atmosphere at the joint stand</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>See you again next year, even more relaxed and with even more coffee!</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/event4-image7.webp" alt="A collage of photos showing students, coffee cups, and burek.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-image7.webp" alt="A collage of photos showing students, coffee cups, and burek.">
|
||||
<figcaption>Good company, lots of memories, and exam stress overcome together.</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
|
@ -238,7 +283,7 @@
|
|||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<img loading="lazy" decoding="async" src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<div class="author-text">
|
||||
<p class="author-name">Kristijan Popovski</p>
|
||||
<p class="author-title">President and Founder</p>
|
||||
|
|
@ -278,7 +323,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -325,6 +370,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/projects/paint-and-wine-at-sunset/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/projects/paint-and-wine-at-sunset/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/projects/paint-and-wine-at-sunset/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music - MSOS">
|
||||
<meta property="og:description" content="Paint, wine, and music brought students together in Gorizia to celebrate Women’s Day and mark the first MSOS Nova Gorica event.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/projects/paint-and-wine-at-sunset/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/paint-wine-1.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music - MSOS">
|
||||
<meta name="twitter:description" content="Paint, wine, and music brought students together in Gorizia to celebrate Women’s Day and mark the first MSOS Nova Gorica event.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/paint-wine-1.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music","description":"Paint, wine, and music brought students together in Gorizia to celebrate Women’s Day and mark the first MSOS Nova Gorica event.","image":"https://msosorg.com/images/paint-wine-1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/projects/paint-and-wine-at-sunset/","datePublished":"2025-03-08","dateModified":"2025-03-08"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Events & projects","item":"https://msosorg.com/en/projects/"},{"@type":"ListItem","position":3,"name":"Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music","item":"https://msosorg.com/en/projects/paint-and-wine-at-sunset/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -152,14 +197,14 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/paint-wine-1.jpg" alt="Paint & Wine at Sunset event in Gorizia">
|
||||
<img fetchpriority="high" src="../../../images/paint-wine-1.webp" alt="Paint & Wine at Sunset event in Gorizia">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
<p>On International Women’s Day, the MSOS Nova Gorica team hosted its very first local event in collaboration with the Macedonian Cultural Association "Ohridski Biseri". Students from Ljubljana, Nova Gorica, and the surrounding region crossed the border into Gorizia, Italy, for an evening of painting, wine, and music.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/paint-wine-2.png" alt="Students painting during the Paint & Wine evening">
|
||||
<img loading="lazy" decoding="async" src="../../../images/paint-wine-2.webp" alt="Students painting during the Paint & Wine evening">
|
||||
</figure>
|
||||
|
||||
<h2>A first for MSOS Nova Gorica</h2>
|
||||
|
|
@ -167,7 +212,7 @@
|
|||
<p>This was more than just an event. It was the first official activity organized by our new MSOS Nova Gorica team. With support from the Macedonian Cultural Association "Ohridski Biseri", we transformed the cozy venue Etnoteca Mama Angela into a space filled with creativity and laughter.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/paint-wine-3.jpg" alt="The cozy venue Etnoteca Mama Angela">
|
||||
<img loading="lazy" decoding="async" src="../../../images/paint-wine-3.webp" alt="The cozy venue Etnoteca Mama Angela">
|
||||
</figure>
|
||||
|
||||
<h2>Art, music, and togetherness</h2>
|
||||
|
|
@ -177,11 +222,11 @@
|
|||
<p>A live DJ set gave the evening a vibrant rhythm, turning it into more than just a workshop. It became a celebration. Between brushstrokes and beats, students connected, shared stories, and enjoyed an atmosphere that was both creative and festive.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/paint-wine-4.png" alt="Canvases filling with color as students paint">
|
||||
<img loading="lazy" decoding="async" src="../../../images/paint-wine-4.webp" alt="Canvases filling with color as students paint">
|
||||
</figure>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/paint-wine-5.png" alt="Students enjoying wine and music together">
|
||||
<img loading="lazy" decoding="async" src="../../../images/paint-wine-5.webp" alt="Students enjoying wine and music together">
|
||||
</figure>
|
||||
|
||||
<h2>Why it mattered</h2>
|
||||
|
|
@ -195,11 +240,11 @@
|
|||
</div>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/paint-wine-6.png" alt="Finished paintings on display">
|
||||
<img loading="lazy" decoding="async" src="../../../images/paint-wine-6.webp" alt="Finished paintings on display">
|
||||
</figure>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/paint-wine-7.png" alt="The group enjoying the celebration">
|
||||
<img loading="lazy" decoding="async" src="../../../images/paint-wine-7.webp" alt="The group enjoying the celebration">
|
||||
</figure>
|
||||
|
||||
<h2>Looking ahead</h2>
|
||||
|
|
@ -207,11 +252,11 @@
|
|||
<p>Paint & Wine Night showed that MSOS Nova Gorica is ready to bring fresh ideas and energy to our student family. From wine glasses clinking to canvases filling with color, the night left everyone with memories and a few paint-stained fingers, that will not be forgotten.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/paint-wine-8.png" alt="A memory from the Paint & Wine evening">
|
||||
<img loading="lazy" decoding="async" src="../../../images/paint-wine-8.webp" alt="A memory from the Paint & Wine evening">
|
||||
</figure>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/paint-wine-9.jpg" alt="The MSOS Nova Gorica community at sunset">
|
||||
<img loading="lazy" decoding="async" src="../../../images/paint-wine-9.webp" alt="The MSOS Nova Gorica community at sunset">
|
||||
</figure>
|
||||
</div>
|
||||
</article>
|
||||
|
|
@ -238,7 +283,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -285,6 +330,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Cheering for Macedonia, Watching Handball Together in Slovenia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/projects/watching-handball-together-in-slovenia/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/projects/watching-handball-together-in-slovenia/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/projects/watching-handball-together-in-slovenia/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Cheering for Macedonia, Watching Handball Together in Slovenia - MSOS">
|
||||
<meta property="og:description" content="From Ljubljana to Maribor, Macedonian students filled cafés with chants, flags, and laughter while watching the national handball team.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/projects/watching-handball-together-in-slovenia/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/handball-2025-1.webp">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Cheering for Macedonia, Watching Handball Together in Slovenia - MSOS">
|
||||
<meta name="twitter:description" content="From Ljubljana to Maribor, Macedonian students filled cafés with chants, flags, and laughter while watching the national handball team.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/handball-2025-1.webp">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Cheering for Macedonia, Watching Handball Together in Slovenia","description":"From Ljubljana to Maribor, Macedonian students filled cafés with chants, flags, and laughter while watching the national handball team.","image":"https://msosorg.com/images/handball-2025-1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/projects/watching-handball-together-in-slovenia/","datePublished":"2025-01-25","dateModified":"2025-01-25"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Events & projects","item":"https://msosorg.com/en/projects/"},{"@type":"ListItem","position":3,"name":"Cheering for Macedonia, Watching Handball Together in Slovenia","item":"https://msosorg.com/en/projects/watching-handball-together-in-slovenia/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -152,14 +197,14 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img src="../../../images/handball-2025-1.png" alt="Fan atmosphere while watching handball in Maribor">
|
||||
<img fetchpriority="high" src="../../../images/handball-2025-1.webp" alt="Fan atmosphere while watching handball in Maribor">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
<p>In January 2025, Macedonian students in Ljubljana and Maribor turned cafés into fan zones, gathering to cheer, sing, and share the thrill of handball, proving that even far from home, the spirit of Macedonia lives loud.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/handball-2025-2.png" alt="A snapshot of the fan atmosphere in Maribor.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/handball-2025-2.webp" alt="A snapshot of the fan atmosphere in Maribor.">
|
||||
<figcaption>A snapshot of the fan atmosphere in Maribor.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -168,14 +213,14 @@
|
|||
<p>This winter, the World Handball Championship brought more than just matches on screen. It brought Macedonian students together. In Ljubljana, the initiative came from a student, Ljuben Najdovski, who suggested that MSOS host a group watch of the match against Guinea held on January 19, 2025. With quick organization and support from the local café Lepa Žoga, a space was reserved, sign-ups were collected, and soon enough 25 students filled the place with flags, chants, and laughter.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/handball-2025-3.png" alt="Fans gathered at the Ljubljana base to cheer for Macedonia together.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/handball-2025-3.webp" alt="Fans gathered at the Ljubljana base to cheer for Macedonia together.">
|
||||
<figcaption>Fans gathered at the Ljubljana base to cheer for Macedonia together.</figcaption>
|
||||
</figure>
|
||||
|
||||
<p>Just a week later, the energy carried over to Maribor, where the local MSOS team set up their own fan gathering for the match against France held on January 25, 2025. Hosted at café CLC in the city center, the event welcomed 35 students and friends, complete with snacks, music, and a proper fan atmosphere. Even though the result on the scoreboard was not in Macedonia’s favor, the night ended in celebration, with new friendships and even an after-gathering that lasted long beyond the final whistle.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/handball-2025-4.png" alt="Fans gathered at the Maribor base to cheer for Macedonia together.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/handball-2025-4.webp" alt="Fans gathered at the Maribor base to cheer for Macedonia together.">
|
||||
<figcaption>Fans gathered at the Maribor base to cheer for Macedonia together.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -184,7 +229,7 @@
|
|||
<p>What made these events special was not only the sport. It was the way students created a piece of home abroad: waving flags, sharing drinks, shouting "Ајде Македонија!" at the screen, and laughing together at missed shots or brilliant saves. For newcomers, it was a chance to instantly feel part of a community. For others, it was a reminder that even hundreds of kilometers from home, they were not cheering alone.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/handball-2025-5.png" alt="Two of our MSOS Maribor organizers enjoying the evening at the fan event.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/handball-2025-5.webp" alt="Two of our MSOS Maribor organizers enjoying the evening at the fan event.">
|
||||
<figcaption>Two of our MSOS Maribor organizers enjoying the evening at the fan event.</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -193,12 +238,12 @@
|
|||
<p>From Ljubljana to Maribor, these watch parties showed that supporting the national team can be more than sports. It is a way to build friendships, strengthen community, and carry a piece of Macedonia wherever we go. With each match, the energy grows, and one thing is certain: these gatherings will continue to be part of the MSOS story.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/handball-2025-6.png" alt="A snapshot of our team in Maribor.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/handball-2025-6.webp" alt="A snapshot of our team in Maribor.">
|
||||
<figcaption>A snapshot of our team in Maribor.</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img src="../../../images/handball-2025-7.png" alt="A snapshot of our team in Ljubljana.">
|
||||
<img loading="lazy" decoding="async" src="../../../images/handball-2025-7.webp" alt="A snapshot of our team in Ljubljana.">
|
||||
<figcaption>A snapshot of our team in Ljubljana.</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
|
@ -226,7 +271,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -273,6 +318,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>How university study works - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/academic-life/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/academic-life/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/academic-life/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="How university study works - MSOS">
|
||||
<meta property="og:description" content="The academic year, ECTS, grades, exam registration, the referat, learning Slovenian, tutoring, and extracurricular ECTS.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/academic-life/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="How university study works - MSOS">
|
||||
<meta name="twitter:description" content="The academic year, ECTS, grades, exam registration, the referat, learning Slovenian, tutoring, and extracurricular ECTS.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"How university study works","description":"The academic year, ECTS, grades, exam registration, the referat, learning Slovenian, tutoring, and extracurricular ECTS.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/academic-life/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"How university study works","item":"https://msosorg.com/en/student-welcome-guide/academic-life/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -250,7 +295,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -297,6 +342,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Essential administrative tools - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/administrative-basics/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/administrative-basics/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/administrative-basics/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Essential administrative tools - MSOS">
|
||||
<meta property="og:description" content="EMŠO, a tax number, SI-PASS, a bank account, and a phone plan unlock almost every other service.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/administrative-basics/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Essential administrative tools - MSOS">
|
||||
<meta name="twitter:description" content="EMŠO, a tax number, SI-PASS, a bank account, and a phone plan unlock almost every other service.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Essential administrative tools","description":"EMŠO, a tax number, SI-PASS, a bank account, and a phone plan unlock almost every other service.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/administrative-basics/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Essential administrative tools","item":"https://msosorg.com/en/student-welcome-guide/administrative-basics/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -247,7 +292,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -294,6 +339,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>You have been accepted, what happens next? - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/admission-and-enrolment/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/admission-and-enrolment/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/admission-and-enrolment/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="You have been accepted, what happens next? - MSOS">
|
||||
<meta property="og:description" content="Admission is not always enrolment. Read the decision, complete enrolment, get your certificate of enrolment, and check any charges.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/admission-and-enrolment/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="You have been accepted, what happens next? - MSOS">
|
||||
<meta name="twitter:description" content="Admission is not always enrolment. Read the decision, complete enrolment, get your certificate of enrolment, and check any charges.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"You have been accepted, what happens next?","description":"Admission is not always enrolment. Read the decision, complete enrolment, get your certificate of enrolment, and check any charges.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/admission-and-enrolment/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"You have been accepted, what happens next?","item":"https://msosorg.com/en/student-welcome-guide/admission-and-enrolment/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -248,7 +293,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -295,6 +340,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Current application deadlines - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/application-deadlines/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/application-deadlines/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/application-deadlines/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Current application deadlines - MSOS">
|
||||
<meta property="og:description" content="The 2026/2027 bachelor and master periods for Macedonian citizens, by university. Always open the exact current call.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/application-deadlines/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Current application deadlines - MSOS">
|
||||
<meta name="twitter:description" content="The 2026/2027 bachelor and master periods for Macedonian citizens, by university. Always open the exact current call.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Current application deadlines","description":"The 2026/2027 bachelor and master periods for Macedonian citizens, by university. Always open the exact current call.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/application-deadlines/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Current application deadlines","item":"https://msosorg.com/en/student-welcome-guide/application-deadlines/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -245,7 +290,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -292,6 +337,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Your arrival checklist - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/arrival-checklist/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/arrival-checklist/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/arrival-checklist/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Your arrival checklist - MSOS">
|
||||
<meta property="og:description" content="What to do in the first 72 hours, the first week, and the first month after you reach Slovenia.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/arrival-checklist/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Your arrival checklist - MSOS">
|
||||
<meta name="twitter:description" content="What to do in the first 72 hours, the first week, and the first month after you reach Slovenia.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Your arrival checklist","description":"What to do in the first 72 hours, the first week, and the first month after you reach Slovenia.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/arrival-checklist/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Your arrival checklist","item":"https://msosorg.com/en/student-welcome-guide/arrival-checklist/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -263,7 +308,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -310,6 +355,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Applying for a bachelor degree - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/bachelor-application/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/bachelor-application/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/bachelor-application/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Applying for a bachelor degree - MSOS">
|
||||
<meta property="og:description" content="The eVŠ process, the document package, the 2026/2027 rounds by university, and why you should apply early.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/bachelor-application/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Applying for a bachelor degree - MSOS">
|
||||
<meta name="twitter:description" content="The eVŠ process, the document package, the 2026/2027 rounds by university, and why you should apply early.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Applying for a bachelor degree","description":"The eVŠ process, the document package, the 2026/2027 rounds by university, and why you should apply early.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/bachelor-application/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Applying for a bachelor degree","item":"https://msosorg.com/en/student-welcome-guide/bachelor-application/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -275,7 +320,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -322,6 +367,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>How to choose the right programme - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/choose-a-programme/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/choose-a-programme/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/choose-a-programme/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="How to choose the right programme - MSOS">
|
||||
<meta property="og:description" content="Compare the programme first, then the city. Use information days well, and confirm language and aptitude-test requirements early.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/choose-a-programme/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="How to choose the right programme - MSOS">
|
||||
<meta name="twitter:description" content="Compare the programme first, then the city. Use information days well, and confirm language and aptitude-test requirements early.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"How to choose the right programme","description":"Compare the programme first, then the city. Use information days well, and confirm language and aptitude-test requirements early.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/choose-a-programme/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"How to choose the right programme","item":"https://msosorg.com/en/student-welcome-guide/choose-a-programme/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -266,7 +311,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -313,6 +358,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Your complete journey to Slovenia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/complete-student-journey/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/complete-student-journey/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/complete-student-journey/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Your complete journey to Slovenia - MSOS">
|
||||
<meta property="og:description" content="Nine stages from researching a programme to your first year, with residence, health, and housing handled in parallel.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/complete-student-journey/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Your complete journey to Slovenia - MSOS">
|
||||
<meta name="twitter:description" content="Nine stages from researching a programme to your first year, with residence, health, and housing handled in parallel.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Your complete journey to Slovenia","description":"Nine stages from researching a programme to your first year, with residence, health, and housing handled in parallel.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/complete-student-journey/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Your complete journey to Slovenia","item":"https://msosorg.com/en/student-welcome-guide/complete-student-journey/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -291,7 +336,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -338,6 +383,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Prepare your documents correctly - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/document-preparation/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/document-preparation/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/document-preparation/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Prepare your documents correctly - MSOS">
|
||||
<meta property="og:description" content="One master folder, clear filenames, the difference between original, copy, translation, and legalisation, and basic data protection.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/document-preparation/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Prepare your documents correctly - MSOS">
|
||||
<meta name="twitter:description" content="One master folder, clear filenames, the difference between original, copy, translation, and legalisation, and basic data protection.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Prepare your documents correctly","description":"One master folder, clear filenames, the difference between original, copy, translation, and legalisation, and basic data protection.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/document-preparation/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Prepare your documents correctly","item":"https://msosorg.com/en/student-welcome-guide/document-preparation/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -240,7 +285,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -287,6 +332,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>How to apply through eVŠ - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/evs-application-guide/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/evs-application-guide/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/evs-application-guide/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="How to apply through eVŠ - MSOS">
|
||||
<meta property="og:description" content="Prepare, log in, enter your previous education, order preferences, upload, and press Submit. A draft is not an application.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/evs-application-guide/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="How to apply through eVŠ - MSOS">
|
||||
<meta name="twitter:description" content="Prepare, log in, enter your previous education, order preferences, upload, and press Submit. A draft is not an application.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"How to apply through eVŠ","description":"Prepare, log in, enter your previous education, order preferences, upload, and press Submit. A draft is not an application.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/evs-application-guide/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"How to apply through eVŠ","item":"https://msosorg.com/en/student-welcome-guide/evs-application-guide/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -258,7 +303,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -305,6 +350,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Healthcare after you arrive - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/healthcare-in-slovenia/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/healthcare-in-slovenia/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/healthcare-in-slovenia/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Healthcare after you arrive - MSOS">
|
||||
<meta property="og:description" content="Emergency numbers, what to bring, and student health contacts city by city.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/healthcare-in-slovenia/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Healthcare after you arrive - MSOS">
|
||||
<meta name="twitter:description" content="Emergency numbers, what to bring, and student health contacts city by city.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Healthcare after you arrive","description":"Emergency numbers, what to bring, and student health contacts city by city.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/healthcare-in-slovenia/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Healthcare after you arrive","item":"https://msosorg.com/en/student-welcome-guide/healthcare-in-slovenia/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -301,7 +346,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -348,6 +393,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>From Macedonia to Slovenia, step by step - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="From Macedonia to Slovenia, step by step - MSOS">
|
||||
<meta property="og:description" content="Your complete route from a Macedonian secondary school or first degree to enrolled student life in Slovenia.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="From Macedonia to Slovenia, step by step - MSOS">
|
||||
<meta name="twitter:description" content="Your complete route from a Macedonian secondary school or first degree to enrolled student life in Slovenia.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -406,7 +449,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -453,6 +496,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Applying for a master degree - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/master-application/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/master-application/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/master-application/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Applying for a master degree - MSOS">
|
||||
<meta property="og:description" content="Master admission is faculty-driven. Check field compatibility early, and remember there is no single national deadline.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/master-application/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Applying for a master degree - MSOS">
|
||||
<meta name="twitter:description" content="Master admission is faculty-driven. Check field compatibility early, and remember there is no single national deadline.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Applying for a master degree","description":"Master admission is faculty-driven. Check field compatibility early, and remember there is no single national deadline.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/master-application/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Applying for a master degree","item":"https://msosorg.com/en/student-welcome-guide/master-application/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -252,7 +297,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -299,6 +344,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Proving that you can live in Slovenia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/means-accommodation-address/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/means-accommodation-address/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/means-accommodation-address/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Proving that you can live in Slovenia - MSOS">
|
||||
<meta property="og:description" content="How to prove sufficient means, accommodation, and a registered address for your residence permit.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/means-accommodation-address/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Proving that you can live in Slovenia - MSOS">
|
||||
<meta name="twitter:description" content="How to prove sufficient means, accommodation, and a registered address for your residence permit.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Proving that you can live in Slovenia","description":"How to prove sufficient means, accommodation, and a registered address for your residence permit.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/means-accommodation-address/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Proving that you can live in Slovenia","item":"https://msosorg.com/en/student-welcome-guide/means-accommodation-address/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -324,7 +369,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -371,6 +416,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Your personal study route - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/my-route/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/my-route/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/my-route/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Your personal study route - MSOS">
|
||||
<meta property="og: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.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/my-route/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Your personal study route - MSOS">
|
||||
<meta name="twitter: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.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Your personal study route","description":"Your personal study route to Slovenia — follow the Student Welcome Guide steps for Macedonian students, from choosing a programme to enrolment and residence.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/my-route/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Your personal study route","item":"https://msosorg.com/en/student-welcome-guide/my-route/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -152,7 +197,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -199,6 +244,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Official sources and checklists - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" defer></script>
|
||||
<meta name="description" content="The primary official links behind this guide, grouped by topic, plus the checklists to build and how to manage 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/official-sources-and-checklists/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/official-sources-and-checklists/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/official-sources-and-checklists/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Official sources and checklists - MSOS">
|
||||
<meta property="og:description" content="The primary official links behind this guide, grouped by topic, plus the checklists to build and how to manage sources.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/official-sources-and-checklists/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Official sources and checklists - MSOS">
|
||||
<meta name="twitter:description" content="The primary official links behind this guide, grouped by topic, plus the checklists to build and how to manage sources.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Official sources and checklists","description":"The primary official links behind this guide, grouped by topic, plus the checklists to build and how to manage sources.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/official-sources-and-checklists/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Official sources and checklists","item":"https://msosorg.com/en/student-welcome-guide/official-sources-and-checklists/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -279,7 +324,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -326,6 +371,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Preparing to move from Macedonia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/prepare-to-move/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/prepare-to-move/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/prepare-to-move/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Preparing to move from Macedonia - MSOS">
|
||||
<meta property="og:description" content="A month-by-month plan, the documents to keep in your hand luggage, how to travel, and a detailed packing list.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/prepare-to-move/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Preparing to move from Macedonia - MSOS">
|
||||
<meta name="twitter:description" content="A month-by-month plan, the documents to keep in your hand luggage, how to travel, and a detailed packing list.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Preparing to move from Macedonia","description":"A month-by-month plan, the documents to keep in your hand luggage, how to travel, and a detailed packing list.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/prepare-to-move/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Preparing to move from Macedonia","item":"https://msosorg.com/en/student-welcome-guide/prepare-to-move/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -296,7 +341,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -343,6 +388,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Recognition of Macedonian education - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/recognition-of-education/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/recognition-of-education/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/recognition-of-education/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Recognition of Macedonian education - MSOS">
|
||||
<meta property="og:description" content="Recognition decides whether your prior education gives access to the Slovenian programme. For applicants educated abroad, it is part of admission.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/recognition-of-education/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Recognition of Macedonian education - MSOS">
|
||||
<meta name="twitter:description" content="Recognition decides whether your prior education gives access to the Slovenian programme. For applicants educated abroad, it is part of admission.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Recognition of Macedonian education","description":"Recognition decides whether your prior education gives access to the Slovenian programme. For applicants educated abroad, it is part of admission.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/recognition-of-education/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Recognition of Macedonian education","item":"https://msosorg.com/en/student-welcome-guide/recognition-of-education/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -241,7 +286,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -288,6 +333,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>What happens after the first year? - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/renew-change-graduate/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/renew-change-graduate/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/renew-change-graduate/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="What happens after the first year? - MSOS">
|
||||
<meta property="og:description" content="Annual renewal, repeat and transfer rights, losing status, the post-study route, and leaving Slovenia are all connected.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/renew-change-graduate/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="What happens after the first year? - MSOS">
|
||||
<meta name="twitter:description" content="Annual renewal, repeat and transfer rights, losing status, the post-study route, and leaving Slovenia are all connected.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"What happens after the first year?","description":"Annual renewal, repeat and transfer rights, losing status, the post-study route, and leaving Slovenia are all connected.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/renew-change-graduate/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"What happens after the first year?","item":"https://msosorg.com/en/student-welcome-guide/renew-change-graduate/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -250,7 +295,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -297,6 +342,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Health insurance from Macedonia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/rm-si-3-health-insurance/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/rm-si-3-health-insurance/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/rm-si-3-health-insurance/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Health insurance from Macedonia - MSOS">
|
||||
<meta property="og:description" content="How the bilateral RM/SI 3 route gives you healthcare access in Slovenia, and what it does not cover.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/rm-si-3-health-insurance/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Health insurance from Macedonia - MSOS">
|
||||
<meta name="twitter:description" content="How the bilateral RM/SI 3 route gives you healthcare access in Slovenia, and what it does not cover.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Health insurance from Macedonia","description":"How the bilateral RM/SI 3 route gives you healthcare access in Slovenia, and what it does not cover.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/rm-si-3-health-insurance/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Health insurance from Macedonia","item":"https://msosorg.com/en/student-welcome-guide/rm-si-3-health-insurance/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -290,7 +335,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -337,6 +382,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Finding accommodation as a Macedonian degree student - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/student-accommodation/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/student-accommodation/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/student-accommodation/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Finding accommodation as a Macedonian degree student - MSOS">
|
||||
<meta property="og:description" content="Subsidised public dorms are usually closed to you on temporary residence. Plan for economic-rate or private housing, and avoid scams.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/student-accommodation/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Finding accommodation as a Macedonian degree student - MSOS">
|
||||
<meta name="twitter:description" content="Subsidised public dorms are usually closed to you on temporary residence. Plan for economic-rate or private housing, and avoid scams.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Finding accommodation as a Macedonian degree student","description":"Subsidised public dorms are usually closed to you on temporary residence. Plan for economic-rate or private housing, and avoid scams.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/student-accommodation/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Finding accommodation as a Macedonian degree student","item":"https://msosorg.com/en/student-welcome-guide/student-accommodation/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -290,7 +335,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -337,6 +382,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Plan a realistic student budget - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/student-budget/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/student-budget/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/student-budget/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Plan a realistic student budget - MSOS">
|
||||
<meta property="og:description" content="There is no single national figure. Build a city-based budget, plan for a much larger first month, and use student discounts.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/student-budget/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Plan a realistic student budget - MSOS">
|
||||
<meta name="twitter:description" content="There is no single national figure. Build a city-based budget, plan for a much larger first month, and use student discounts.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Plan a realistic student budget","description":"There is no single national figure. Build a city-based budget, plan for a much larger first month, and use student discounts.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/student-budget/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Plan a realistic student budget","item":"https://msosorg.com/en/student-welcome-guide/student-budget/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -260,7 +305,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -307,6 +352,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>How to activate student meals - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/student-meals/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/student-meals/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/student-meals/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="How to activate student meals - MSOS">
|
||||
<meta property="og:description" content="Subsidised meals are open to eligible foreign degree students and exist across Slovenian study centres, not only in Ljubljana.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/student-meals/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="How to activate student meals - MSOS">
|
||||
<meta name="twitter:description" content="Subsidised meals are open to eligible foreign degree students and exist across Slovenian study centres, not only in Ljubljana.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"How to activate student meals","description":"Subsidised meals are open to eligible foreign degree students and exist across Slovenian study centres, not only in Ljubljana.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/student-meals/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"How to activate student meals","item":"https://msosorg.com/en/student-welcome-guide/student-meals/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -248,7 +293,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -295,6 +340,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>How students are organised in Slovenia - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/student-organisations-and-extracurriculars/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/student-organisations-and-extracurriculars/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/student-organisations-and-extracurriculars/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="How students are organised in Slovenia - MSOS">
|
||||
<meta property="og:description" content="Student organisations, student councils, local clubs, professional societies, university extracurricular programmes, ESN, and communities from home.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/student-organisations-and-extracurriculars/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="How students are organised in Slovenia - MSOS">
|
||||
<meta name="twitter:description" content="Student organisations, student councils, local clubs, professional societies, university extracurricular programmes, ESN, and communities from home.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"How students are organised in Slovenia","description":"Student organisations, student councils, local clubs, professional societies, university extracurricular programmes, ESN, and communities from home.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/student-organisations-and-extracurriculars/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"How students are organised in Slovenia","item":"https://msosorg.com/en/student-welcome-guide/student-organisations-and-extracurriculars/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -285,7 +330,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -332,6 +377,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Temporary residence permit, step by step - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/student-residence-permit/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/student-residence-permit/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/student-residence-permit/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Temporary residence permit, step by step - MSOS">
|
||||
<meta property="og:description" content="The documents, the six steps, the one-year validity, and how to renew the temporary residence permit for study.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/student-residence-permit/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Temporary residence permit, step by step - MSOS">
|
||||
<meta name="twitter:description" content="The documents, the six steps, the one-year validity, and how to renew the temporary residence permit for study.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Temporary residence permit, step by step","description":"The documents, the six steps, the one-year validity, and how to renew the temporary residence permit for study.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/student-residence-permit/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Temporary residence permit, step by step","item":"https://msosorg.com/en/student-welcome-guide/student-residence-permit/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -302,7 +347,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -349,6 +394,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Student public transport - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/student-transport/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/student-transport/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/student-transport/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Student public transport - MSOS">
|
||||
<meta property="og:description" content="National IJPP tickets, city transport, and bicycle sharing. Eligibility does not depend on the distance to your faculty.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/student-transport/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Student public transport - MSOS">
|
||||
<meta name="twitter:description" content="National IJPP tickets, city transport, and bicycle sharing. Eligibility does not depend on the distance to your faculty.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Student public transport","description":"National IJPP tickets, city transport, and bicycle sharing. Eligibility does not depend on the distance to your faculty.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/student-transport/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Student public transport","item":"https://msosorg.com/en/student-welcome-guide/student-transport/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -269,7 +314,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -316,6 +361,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Working through a student service - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/student-work/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/student-work/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/student-work/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Working through a student service - MSOS">
|
||||
<meta property="og:description" content="Student work is allowed on the student permit through a napotnica. Regular employment is a different route that needs a work permit.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/student-work/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Working through a student service - MSOS">
|
||||
<meta name="twitter:description" content="Student work is allowed on the student permit through a napotnica. Regular employment is a different route that needs a work permit.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Working through a student service","description":"Student work is allowed on the student permit through a napotnica. Regular employment is a different route that needs a work permit.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/student-work/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Working through a student service","item":"https://msosorg.com/en/student-welcome-guide/student-work/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -243,7 +288,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -290,6 +335,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Choose and understand your study city - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/study-cities/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/study-cities/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/study-cities/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Choose and understand your study city - MSOS">
|
||||
<meta property="og:description" content="Ljubljana is not the only option. Compare each Slovenian study centre and build your life around the real teaching location.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/study-cities/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Choose and understand your study city - MSOS">
|
||||
<meta name="twitter:description" content="Ljubljana is not the only option. Compare each Slovenian study centre and build your life around the real teaching location.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Choose and understand your study city","description":"Ljubljana is not the only option. Compare each Slovenian study centre and build your life around the real teaching location.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/study-cities/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Choose and understand your study city","item":"https://msosorg.com/en/student-welcome-guide/study-cities/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -275,7 +320,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -322,6 +367,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Tuition rules for Macedonian students - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/tuition-and-scholarships/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/tuition-and-scholarships/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/tuition-and-scholarships/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Tuition rules for Macedonian students - MSOS">
|
||||
<meta property="og:description" content="Full-time public study is generally tuition-free for Macedonian citizens, but this is not a promise that every programme is free.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/tuition-and-scholarships/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Tuition rules for Macedonian students - MSOS">
|
||||
<meta name="twitter:description" content="Full-time public study is generally tuition-free for Macedonian citizens, but this is not a promise that every programme is free.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Tuition rules for Macedonian students","description":"Full-time public study is generally tuition-free for Macedonian citizens, but this is not a promise that every programme is free.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/tuition-and-scholarships/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Tuition rules for Macedonian students","item":"https://msosorg.com/en/student-welcome-guide/tuition-and-scholarships/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -245,7 +290,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -292,6 +337,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Entry is not the same as residence - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/visa-and-residence-explained/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/visa-and-residence-explained/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/visa-and-residence-explained/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Entry is not the same as residence - MSOS">
|
||||
<meta property="og:description" content="Short visa-free entry, visa D, and the study residence permit are three different things. Know which one keeps you here legally.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/visa-and-residence-explained/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Entry is not the same as residence - MSOS">
|
||||
<meta name="twitter:description" content="Short visa-free entry, visa D, and the study residence permit are three different things. Know which one keeps you here legally.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Entry is not the same as residence","description":"Short visa-free entry, visa D, and the study residence permit are three different things. Know which one keeps you here legally.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/visa-and-residence-explained/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Entry is not the same as residence","item":"https://msosorg.com/en/student-welcome-guide/visa-and-residence-explained/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -272,7 +317,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -319,6 +364,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Support while living abroad - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/wellbeing-and-community/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/wellbeing-and-community/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/wellbeing-and-community/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Support while living abroad - MSOS">
|
||||
<meta property="og:description" content="Culture shock is normal. Build support in several places, use university counselling, and know your emergency numbers.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/wellbeing-and-community/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Support while living abroad - MSOS">
|
||||
<meta name="twitter:description" content="Culture shock is normal. Build support in several places, use university counselling, and know your emergency numbers.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Support while living abroad","description":"Culture shock is normal. Build support in several places, use university counselling, and know your emergency numbers.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/wellbeing-and-community/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Support while living abroad","item":"https://msosorg.com/en/student-welcome-guide/wellbeing-and-community/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -239,7 +284,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -286,6 +331,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,52 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Where to submit the residence application - MSOS</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/student-welcome-guide/where-to-apply-for-residence/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/student-welcome-guide/where-to-apply-for-residence/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/student-welcome-guide/where-to-apply-for-residence/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Where to submit the residence application - MSOS">
|
||||
<meta property="og:description" content="The embassy in Skopje or a Slovenian administrative unit: where to submit, and the lawful-stay risk to manage.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/student-welcome-guide/where-to-apply-for-residence/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Where to submit the residence application - MSOS">
|
||||
<meta name="twitter:description" content="The embassy in Skopje or a Slovenian administrative unit: where to submit, and the lawful-stay risk to manage.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Where to submit the residence application","description":"The embassy in Skopje or a Slovenian administrative unit: where to submit, and the lawful-stay risk to manage.","image":"https://msosorg.com/images/og-default.jpg","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/student-welcome-guide/where-to-apply-for-residence/"}</script>
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Student Welcome Guide","item":"https://msosorg.com/en/student-welcome-guide/"},{"@type":"ListItem","position":3,"name":"Where to submit the residence application","item":"https://msosorg.com/en/student-welcome-guide/where-to-apply-for-residence/"}]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -310,7 +355,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -357,6 +402,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,50 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Timeline & Milestones - Macedonian Student Organisation in Slovenia</title>
|
||||
|
||||
<!-- SEO:START -->
|
||||
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('consent', 'default', {
|
||||
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
|
||||
analytics_storage: 'denied', wait_for_update: 500
|
||||
});
|
||||
// Restore a returning visitor's prior choice before the first hit.
|
||||
try { if (localStorage.getItem('msos-consent') === 'granted') {
|
||||
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
|
||||
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" 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/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/timeline-and-milestones/">
|
||||
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/timeline-and-milestones/">
|
||||
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/timeline-and-milestones/">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Timeline & Milestones - Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:description" content="Learn more about the company and the team behind it.">
|
||||
<meta property="og:url" content="https://msosorg.com/en/timeline-and-milestones/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
<meta property="og:locale:alternate" content="mk_MK">
|
||||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Timeline & Milestones - Macedonian Student Organisation in Slovenia">
|
||||
<meta name="twitter:description" content="Learn more about the company and the team behind it.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<!-- SEO:END -->
|
||||
<!-- Google Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
@ -155,7 +198,7 @@
|
|||
|
||||
<!-- Timeline Banner -->
|
||||
<div class="timeline-banner">
|
||||
<img src="../../../images/about_us-timeline-milestones_img0.webp" alt="MSOS Team Group Photo">
|
||||
<img fetchpriority="high" src="../../../images/about_us-timeline-milestones_img0.webp" alt="MSOS Team Group Photo">
|
||||
</div>
|
||||
|
||||
<!-- Timeline Section -->
|
||||
|
|
@ -398,7 +441,7 @@
|
|||
<div class="footer-main">
|
||||
<div class="footer-info">
|
||||
<div class="footer-logo">
|
||||
<img src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
<img loading="lazy" decoding="async" src="../../images/13-whitelogo.png" alt="Macedonian Student Organisation in Slovenia Logo">
|
||||
</div>
|
||||
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
|
||||
<p>
|
||||
|
|
@ -445,6 +488,7 @@
|
|||
<div class="legal-links">
|
||||
<a href="../../en/privacy-policy/">Privacy policy</a>
|
||||
<a href="../../en/cookie-policy/">Cookie policy</a>
|
||||
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 296 KiB |
|
Before Width: | Height: | Size: 451 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 692 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
Before Width: | Height: | Size: 569 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 644 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 613 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
Before Width: | Height: | Size: 570 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
Before Width: | Height: | Size: 648 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 657 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 648 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 296 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 199 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 205 KiB |
|
After Width: | Height: | Size: 25 KiB |