Pre-launch: security + health + a11y hardening & offline Ask MSOS assistant #10
|
|
@ -13,6 +13,18 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# Rebuild the assistant search index from the CURRENT content so it is
|
||||
# always in sync — no manual step needed when pages change.
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.x"
|
||||
|
||||
- name: Rebuild assistant search index
|
||||
run: |
|
||||
python -m pip install --quiet beautifulsoup4
|
||||
python tools/build_search_index.py
|
||||
|
||||
- name: Deploy to Server via rsync
|
||||
run: |
|
||||
mkdir -p ~/.ssh
|
||||
|
|
@ -23,6 +35,13 @@ jobs:
|
|||
--exclude=".git/" \
|
||||
--exclude=".gitea/" \
|
||||
--exclude=".gitignore" \
|
||||
--exclude="README.md" \
|
||||
--exclude="*.sh" \
|
||||
--exclude="*.py" \
|
||||
--exclude="code_export.txt" \
|
||||
--exclude="docs/" \
|
||||
--exclude="templates/" \
|
||||
--exclude="tools/" \
|
||||
-e "ssh -p ${{ secrets.SSH_PORT }} -i ~/.ssh/id_rsa -o StrictHostKeyChecking=no" \
|
||||
./ \
|
||||
${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.TARGET_DIR }}
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
.venv/
|
||||
images/original/
|
||||
.playwright-mcp/
|
||||
code_export.txt
|
||||
|
|
|
|||
35
.htaccess
35
.htaccess
|
|
@ -1,8 +1,28 @@
|
|||
|
||||
RewriteEngine on
|
||||
RewriteCond %{HTTP_HOST} ^msos\.spletnimojster\.si$ [OR]
|
||||
RewriteCond %{HTTP_HOST} ^www\.msos\.spletnimojster\.si$
|
||||
RewriteRule ^/?$ "https\:\/\/msos\.spletnimojster\.si\/en\/" [R=301,L]
|
||||
|
||||
# ----- Canonical domain + language root -----
|
||||
# Migrate the old host to the canonical domain, preserving the path.
|
||||
RewriteCond %{HTTP_HOST} ^(www\.)?msos\.spletnimojster\.si$ [NC]
|
||||
RewriteRule ^ https://msosorg.com%{REQUEST_URI} [R=301,L]
|
||||
# Send the bare root to the default-language homepage.
|
||||
RewriteRule ^/?$ https://msosorg.com/en/ [R=301,L]
|
||||
|
||||
# ----- Defense-in-depth: block dev/sensitive files if they ever ship -----
|
||||
# (The deploy already excludes these; this is a safety net. robots.txt,
|
||||
# sitemap.xml and site.webmanifest are intentionally NOT blocked.)
|
||||
<FilesMatch "(?i)(^code_export\.txt$|\.(sh|py|php|bak|old|log|ini|sql|yml|yaml)$)">
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
<IfModule !mod_authz_core.c>
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
</IfModule>
|
||||
</FilesMatch>
|
||||
# Block internal folders and VCS/CI dirs.
|
||||
RewriteRule (^|/)\.(git|gitea)(/|$) - [F,L]
|
||||
RewriteRule ^(docs|templates|tools)(/|$) - [F,L]
|
||||
|
||||
|
||||
# ============================================================
|
||||
|
|
@ -52,6 +72,15 @@ Options -Indexes
|
|||
</IfModule>
|
||||
<IfModule mod_headers.c>
|
||||
Header set X-Content-Type-Options "nosniff"
|
||||
# Clickjacking protection — the site should never be framed by other origins.
|
||||
Header always set X-Frame-Options "SAMEORIGIN"
|
||||
# Don't leak full page URLs to third parties (analytics, external links).
|
||||
Header always set Referrer-Policy "strict-origin-when-cross-origin"
|
||||
# Explicitly disable browser features the site doesn't use.
|
||||
Header always set Permissions-Policy "camera=(), microphone=(), geolocation=(), interest-cohort=()"
|
||||
# Content-Security-Policy in REPORT-ONLY first so it cannot break styling/scripts.
|
||||
# Review browser console for violations, tighten, then switch to Content-Security-Policy.
|
||||
Header always set Content-Security-Policy-Report-Only "default-src 'self'; img-src 'self' data: https:; style-src 'self' 'unsafe-inline'; script-src 'self' https://www.googletagmanager.com; connect-src 'self' https://www.google-analytics.com https://region1.google-analytics.com; frame-src https://www.youtube-nocookie.com https://www.youtube.com; frame-ancestors 'self'; base-uri 'self'; form-action 'self' https://docs.google.com"
|
||||
<FilesMatch "\.html$">
|
||||
Header set Cache-Control "no-cache, must-revalidate"
|
||||
</FilesMatch>
|
||||
|
|
|
|||
4
404.html
4
404.html
|
|
@ -50,7 +50,7 @@
|
|||
<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>
|
||||
<a href="/en/"><img width="604" height="130" 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>
|
||||
|
|
@ -70,5 +70,7 @@
|
|||
</p>
|
||||
</div>
|
||||
</main>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,130 @@
|
|||
/* ==========================================================================
|
||||
MSOS Assistant widget styles. All selectors are .msa-* scoped so they can't
|
||||
collide with the site. Colours echo the site's teal accent.
|
||||
========================================================================== */
|
||||
.msa-root {
|
||||
--msa-accent: #12707e;
|
||||
--msa-accent-dark: #0d5560;
|
||||
--msa-bg: #ffffff;
|
||||
--msa-bot: #f1f5f6;
|
||||
--msa-user: #12707e;
|
||||
--msa-text: #16232a;
|
||||
position: fixed;
|
||||
right: 20px; bottom: 20px;
|
||||
z-index: 9999;
|
||||
font-family: inherit;
|
||||
}
|
||||
/* On the Become-a-member page the floating "Become a member" CTA sits
|
||||
bottom-right, so move the assistant to the bottom-left there. */
|
||||
.msa-root.msa-left { right: auto; left: 20px; }
|
||||
.msa-root.msa-left .msa-panel { right: auto; left: 0; }
|
||||
|
||||
/* launcher */
|
||||
.msa-launch {
|
||||
position: relative;
|
||||
display: inline-flex; align-items: center; gap: 8px;
|
||||
background: var(--msa-accent); color: #fff;
|
||||
border: 0; border-radius: 999px;
|
||||
padding: 12px 18px; font-size: 15px; font-weight: 600;
|
||||
cursor: pointer; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
|
||||
transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
|
||||
}
|
||||
.msa-launch:hover { background: var(--msa-accent-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.24); }
|
||||
.msa-launch i { font-size: 17px; }
|
||||
.msa-open .msa-launch { display: none; }
|
||||
/* gentle attention pulse on the launcher */
|
||||
.msa-launch::before {
|
||||
content: ""; position: absolute; inset: 0; border-radius: 999px;
|
||||
box-shadow: 0 0 0 0 rgba(18,112,126,.45); animation: msa-pulse 2.8s ease-out infinite;
|
||||
}
|
||||
@keyframes msa-pulse { 0%{box-shadow:0 0 0 0 rgba(18,112,126,.45);} 70%{box-shadow:0 0 0 14px rgba(18,112,126,0);} 100%{box-shadow:0 0 0 0 rgba(18,112,126,0);} }
|
||||
|
||||
/* panel */
|
||||
.msa-panel {
|
||||
position: absolute; right: 0; bottom: 0;
|
||||
width: min(380px, calc(100vw - 32px));
|
||||
height: min(560px, calc(100vh - 40px));
|
||||
display: none; flex-direction: column;
|
||||
background: var(--msa-bg); border-radius: 16px;
|
||||
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
|
||||
overflow: hidden;
|
||||
}
|
||||
.msa-open .msa-panel { display: flex; animation: msa-rise .22s ease; }
|
||||
@keyframes msa-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
|
||||
|
||||
/* one-time disclaimer note under the greeting */
|
||||
.msa-note {
|
||||
font-size: 12px; line-height: 1.45; color: #6a787e;
|
||||
background: #fff8ec; border: 1px solid #f0e3c8; border-radius: 10px;
|
||||
padding: 8px 11px;
|
||||
}
|
||||
|
||||
/* suggested-question chips */
|
||||
.msa-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
|
||||
.msa-chips-label { width: 100%; font-size: 12.5px; color: #5a6b72; margin-bottom: 2px; }
|
||||
.msa-chip {
|
||||
background: #fff; border: 1px solid var(--msa-accent); color: var(--msa-accent);
|
||||
border-radius: 999px; padding: 7px 12px; font-size: 13px; font-family: inherit;
|
||||
cursor: pointer; line-height: 1.2; transition: background .12s ease, color .12s ease;
|
||||
}
|
||||
.msa-chip:hover { background: var(--msa-accent); color: #fff; }
|
||||
|
||||
/* typing indicator */
|
||||
.msa-typing { display: inline-flex; gap: 4px; padding: 2px 0; }
|
||||
.msa-typing i { width: 7px; height: 7px; border-radius: 50%; background: #9fb0b6; display: inline-block; animation: msa-blink 1.2s infinite; }
|
||||
.msa-typing i:nth-child(2) { animation-delay: .2s; }
|
||||
.msa-typing i:nth-child(3) { animation-delay: .4s; }
|
||||
@keyframes msa-blink { 0%,80%,100%{ opacity:.3; } 40%{ opacity:1; } }
|
||||
|
||||
.msa-head {
|
||||
display: flex; align-items: center; justify-content: space-between;
|
||||
background: var(--msa-accent); color: #fff;
|
||||
padding: 14px 16px; font-weight: 700; font-size: 16px;
|
||||
}
|
||||
.msa-x { background: none; border: 0; color: #fff; font-size: 26px; line-height: 1; cursor: pointer; padding: 0 4px; }
|
||||
.msa-x:hover { opacity: .8; }
|
||||
|
||||
.msa-log {
|
||||
flex: 1; overflow-y: auto; padding: 14px;
|
||||
display: flex; flex-direction: column; gap: 10px;
|
||||
background: #fafbfb;
|
||||
}
|
||||
.msa-msg { display: flex; }
|
||||
.msa-bot { justify-content: flex-start; }
|
||||
.msa-user { justify-content: flex-end; }
|
||||
.msa-bubble {
|
||||
max-width: 85%; padding: 10px 13px; border-radius: 14px;
|
||||
font-size: 14.5px; line-height: 1.5; color: var(--msa-text);
|
||||
background: var(--msa-bot); border-bottom-left-radius: 4px;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.msa-user .msa-bubble {
|
||||
background: var(--msa-user); color: #fff; border-radius: 14px; border-bottom-right-radius: 4px;
|
||||
}
|
||||
.msa-also { color: #5a6b72; font-size: 13px; }
|
||||
.msa-link {
|
||||
display: inline-block; margin-top: 6px;
|
||||
color: var(--msa-accent); font-weight: 600; text-decoration: none;
|
||||
}
|
||||
.msa-link:hover { text-decoration: underline; }
|
||||
|
||||
.msa-form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid #eceff0; background: #fff; }
|
||||
.msa-input {
|
||||
flex: 1; border: 1px solid #d6dcde; border-radius: 10px;
|
||||
padding: 10px 12px; font-size: 14.5px; font-family: inherit; color: var(--msa-text);
|
||||
}
|
||||
.msa-input:focus { outline: 2px solid var(--msa-accent); outline-offset: -1px; border-color: var(--msa-accent); }
|
||||
.msa-send {
|
||||
background: var(--msa-accent); color: #fff; border: 0; border-radius: 10px;
|
||||
width: 44px; cursor: pointer; font-size: 16px;
|
||||
}
|
||||
.msa-send:hover { background: var(--msa-accent-dark); }
|
||||
.msa-foot { margin: 0; padding: 8px 12px; font-size: 11.5px; color: #8a979d; background: #fff; text-align: center; }
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.msa-root { right: 12px; bottom: 12px; }
|
||||
.msa-panel { width: calc(100vw - 24px); height: calc(100vh - 24px); }
|
||||
}
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.msa-launch { transition: none; }
|
||||
}
|
||||
|
|
@ -0,0 +1,328 @@
|
|||
/* ==========================================================================
|
||||
MSOS Assistant — offline "find my answer" helper (v2).
|
||||
100% in-browser: no API, no server, no cost. Detects the language of the
|
||||
QUESTION (not just the page), lazy-loads that language's index, matches a
|
||||
curated multilingual answer layer + BM25 search, and links to the page.
|
||||
Dependency-free so it stays CSP-safe (script-src 'self').
|
||||
========================================================================== */
|
||||
(function () {
|
||||
"use strict";
|
||||
|
||||
function normLang(l) { l = (l || "en").toLowerCase(); if (l === "sl") l = "si"; return ["en", "mk", "si"].indexOf(l) < 0 ? "en" : l; }
|
||||
var PAGE_LANG = normLang(document.documentElement.lang);
|
||||
|
||||
/* ---- localized UI strings ---- */
|
||||
var UIS = {
|
||||
en: { title: "Ask MSOS", open: "Ask MSOS", placeholder: "Ask a question…", send: "Send", close: "Close",
|
||||
greeting: "Hi! 👋 Ask me anything about studying in Slovenia or about MSOS — I'll point you to the right page. You can ask in English, Macedonian or Slovene.",
|
||||
disc: "I'm an automated guide and can make mistakes — for official steps, deadlines and amounts, always check the linked page.",
|
||||
found: "Here's what I found:", also: "You might also like:", more: "Read more",
|
||||
none: "I couldn't find a clear answer for that. These might help:", tryLabel: "Popular questions:",
|
||||
guideUrl: "/en/student-welcome-guide/", disclaimer: "Answers come straight from this website." },
|
||||
mk: { title: "Прашај MSOS", open: "Прашај MSOS", placeholder: "Постави прашање…", send: "Испрати", close: "Затвори",
|
||||
greeting: "Здраво! 👋 Прашај ме било што за студирање во Словенија или за MSOS — ќе те упатам до вистинската страница. Можеш да прашаш на македонски, англиски или словенечки.",
|
||||
disc: "Јас сум автоматски водич и можам да згрешам — за официјални чекори, рокови и износи, секогаш провери ја поврзаната страница.",
|
||||
found: "Еве што најдов:", also: "Можеби ќе ти користи и:", more: "Прочитај повеќе",
|
||||
none: "Не најдов јасен одговор. Ова можеби ќе помогне:", tryLabel: "Популарни прашања:",
|
||||
guideUrl: "/mk/student-welcome-guide/", disclaimer: "Одговорите доаѓаат директно од оваа страница." },
|
||||
si: { title: "Vprašaj MSOS", open: "Vprašaj MSOS", placeholder: "Zastavi vprašanje…", send: "Pošlji", close: "Zapri",
|
||||
greeting: "Živjo! 👋 Vprašaj me karkoli o študiju v Sloveniji ali o MSOS — usmeril te bom na pravo stran. Vprašaš lahko v slovenščini, angleščini ali makedonščini.",
|
||||
disc: "Sem samodejni vodnik in se lahko zmotim — za uradne korake, roke in zneske vedno preveri povezano stran.",
|
||||
found: "Tole sem našel:", also: "Morda te zanima tudi:", more: "Preberi več",
|
||||
none: "Nisem našel jasnega odgovora. Morda pomaga to:", tryLabel: "Pogosta vprašanja:",
|
||||
guideUrl: "/si/student-welcome-guide/", disclaimer: "Odgovori prihajajo neposredno s te spletne strani." }
|
||||
};
|
||||
|
||||
/* ---- suggested starter questions (clickable chips) ---- */
|
||||
var CHIPS = {
|
||||
en: ["How do I enrol at a university?", "Residence permit?", "Cost of living in Slovenia?", "How to become a member?"],
|
||||
mk: ["Како да се запишам на факултет?", "Дозвола за престој?", "Трошоци за живот во Словенија?", "Како да станам член?"],
|
||||
si: ["Kako se vpišem na fakulteto?", "Dovoljenje za prebivanje?", "Stroški življenja v Sloveniji?", "Kako postanem član?"]
|
||||
};
|
||||
|
||||
/* ---- curated short answers, per language. Keywords are matched as
|
||||
substrings (so short stems like "запиш" catch "запишам/запишување").
|
||||
EN is the reference; MK/SI are machine-drafted — PROOFREAD before launch.
|
||||
Add more anytime: {k:[keywords], a:"short answer", u:"/lang/page/"} ---- */
|
||||
var INTENTS = {
|
||||
en: [
|
||||
{ k: ["enrol", "enroll", "enrolment", "register at", "evš", "evs", "admission", "admissio", "apply to univ", "sign up for", "faculty", "university place"], u: "/en/student-welcome-guide/evs-application-guide/",
|
||||
a: "You apply through the eVŠ portal. The eVŠ guide walks through creating your application, choosing programmes, and the deadlines." },
|
||||
{ k: ["residence", "permit", "temporary stay", "stay in slove"], u: "/en/student-welcome-guide/student-residence-permit/",
|
||||
a: "Non-EU students apply for a temporary residence permit for study — several documents and steps, valid ~1 year, then renewed." },
|
||||
{ k: ["visa"], u: "/en/student-welcome-guide/student-residence-permit/",
|
||||
a: "Non-EU students generally need a residence permit for study rather than a short visa. See the residence-permit guide for documents and steps." },
|
||||
{ k: ["cost", "living", "expenses", "budget", "how much money", "prices"], u: "/en/get-to-know-slovenia/",
|
||||
a: "Monthly living costs depend on your city and housing. The guide breaks down rent, food, transport and student discounts." },
|
||||
{ k: ["accommodation", "housing", "dorm", "apartment", "where to live", "room", "student home", "rent"], u: "/en/student-welcome-guide/student-accommodation/",
|
||||
a: "You can look at student dorms and private rentals. The accommodation guide explains how and where to search." },
|
||||
{ k: ["english", "slovene", "slovenian language", "in english", "language requirement"], u: "/en/student-welcome-guide/",
|
||||
a: "Some programmes are in English; many are in Slovene. Learning basic Slovene helps a lot with daily life and admin." },
|
||||
{ k: ["work", "job", "part-time", "student work", "earn"], u: "/en/student-welcome-guide/",
|
||||
a: "Students can work part-time through student work ('študentsko delo'). The guide covers how it fits alongside studies." },
|
||||
{ k: ["boni", "benefit", "discount", "meal", "subsid"], u: "/en/student-welcome-guide/",
|
||||
a: "Students get subsidised meals ('boni') and many discounts. See the guide for how to register and use them." },
|
||||
{ k: ["tuition", "fee", "scholarship", "funding", "ad futura", "grant"], u: "/en/student-welcome-guide/application-deadlines/",
|
||||
a: "Tuition varies by programme and status; scholarships like Ad Futura exist. Check deadlines and funding in the guide." },
|
||||
{ k: ["bank", "account", "iban", "open a bank"], u: "/en/blog/how-to-open-slovenian-bank-account/",
|
||||
a: "Opening a Slovenian bank account is straightforward with your documents. The blog post walks through it step by step." },
|
||||
{ k: ["health", "insurance", "doctor", "medical"], u: "/en/student-welcome-guide/",
|
||||
a: "You'll need health insurance as a student. The Student Welcome Guide explains how to arrange it after you arrive." },
|
||||
{ k: ["arrival", "checklist", "when i arrive", "first week", "moving", "just arrived"], u: "/en/student-welcome-guide/arrival-checklist/",
|
||||
a: "There's a first-weeks arrival checklist (registration, permit, bank, health, etc.) to keep you on track." },
|
||||
{ k: ["deadline", "when to apply", "dates"], u: "/en/student-welcome-guide/application-deadlines/",
|
||||
a: "Application deadlines depend on the round and programme. The deadlines page lists the key dates to watch." },
|
||||
{ k: ["member", "join", "membership", "become a member"], u: "/en/become-a-member/",
|
||||
a: "You can join in a couple of minutes — students and supporters both welcome. Use the Become a member form." },
|
||||
{ k: ["support", "donate", "donation", "sponsor", "help you"], u: "/en/support/",
|
||||
a: "You can support MSOS by bank transfer, sponsorship or partnership. See the Support page for details." },
|
||||
{ k: ["contact", "email", "reach you", "get in touch", "phone"], u: "/en/legal/",
|
||||
a: "You can reach MSOS at info@msosorg.com. Official details are on the Official information page." },
|
||||
{ k: ["ohrid"], u: "/en/get-to-know-macedonia/ohrid-more-than-a-postcard/", a: "Ohrid is a UNESCO lakeside town — old bazaar, churches and Kaneo. The 'Get to know Macedonia' story covers what to see." },
|
||||
{ k: ["who are you", "what is msos", "about msos", "about you"], u: "/en/about-us/", a: "MSOS is the first Macedonian Student Organisation in Slovenia — support, community and culture for Macedonian students. See About us." }
|
||||
],
|
||||
mk: [
|
||||
{ k: ["запиш", "упис", "факултет", "студи", "evš", "evs", "аплиц", "прием", "универзитет"], u: "/mk/student-welcome-guide/evs-application-guide/",
|
||||
a: "Аплицираш преку порталот eVŠ. Водичот за eVŠ те води чекор по чекор низ пријавата, изборот на програми и роковите." },
|
||||
{ k: ["дозвол", "престој", "виза", "бивање"], u: "/mk/student-welcome-guide/student-residence-permit/",
|
||||
a: "Аплицираш за дозвола за привремен престој за студирање — потребни се неколку документи и чекори; важи околу 1 година." },
|
||||
{ k: ["трошоц", "живот", "цени", "пари", "буџет"], u: "/mk/get-to-know-slovenia/",
|
||||
a: "Месечните трошоци зависат од градот и сместувањето. Водичот објаснува киринина, храна, превоз и попусти." },
|
||||
{ k: ["сместув", "стан", "дом", "соба", "кирија", "живеа"], u: "/mk/student-welcome-guide/student-accommodation/",
|
||||
a: "Можеш да бараш студентски домови или приватно сместување. Водичот објаснува како и каде да бараш." },
|
||||
{ k: ["работ", "хонорар", "студентск дело", "заработ"], u: "/mk/student-welcome-guide/",
|
||||
a: "Студентите можат да работат преку студентско дело. Водичот објаснува како да го усогласиш со студиите." },
|
||||
{ k: ["бони", "попуст", "оброк", "субвенц", "бенефит"], u: "/mk/student-welcome-guide/",
|
||||
a: "Студентите добиваат субвенционирани оброци („бони“) и многу попусти. Види во водичот како да ги искористиш." },
|
||||
{ k: ["стипенд", "школарина", "финанс", "ad futura"], u: "/mk/student-welcome-guide/application-deadlines/",
|
||||
a: "Школарината зависи од програмата и статусот; постојат стипендии како Ad Futura. Провери ги роковите во водичот." },
|
||||
{ k: ["банк", "сметка", "iban"], u: "/mk/blog/how-to-open-slovenian-bank-account/",
|
||||
a: "Отворањето банкарска сметка во Словенија е едноставно со документите. Блог објавата објаснува чекор по чекор." },
|
||||
{ k: ["рок", "кога да аплиц", "датум"], u: "/mk/student-welcome-guide/application-deadlines/",
|
||||
a: "Роковите зависат од кругот и програмата. Страницата со рокови ги наведува клучните датуми." },
|
||||
{ k: ["член", "зачлен", "приклуч"], u: "/mk/become-a-member/",
|
||||
a: "Можеш да се зачлениш за неколку минути — добредојдени се и студенти и поддржувачи." },
|
||||
{ k: ["поддрш", "донац", "донир", "спонз"], u: "/mk/support/",
|
||||
a: "Можеш да го поддржиш MSOS преку банкарски трансфер, спонзорство или партнерство. Види ја страницата Поддршка." },
|
||||
{ k: ["контакт", "е-пошта", "мејл", "телефон"], u: "/mk/legal/",
|
||||
a: "Контактирај го MSOS на info@msosorg.com. Официјалните податоци се на страницата Официјални информации." },
|
||||
{ k: ["охрид"], u: "/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/", a: "Охрид е езерски град под УНЕСКО — стара чаршија, цркви и Канео. Приказната „Запознај ја Македонија“ покажува што да видиш." }
|
||||
],
|
||||
si: [
|
||||
{ k: ["vpis", "vpiš", "fakultet", "študij", "evš", "evs", "prijav", "sprejem", "univerz"], u: "/si/student-welcome-guide/evs-application-guide/",
|
||||
a: "Prijaviš se prek portala eVŠ. Vodnik za eVŠ te vodi skozi prijavo, izbiro programov in roke." },
|
||||
{ k: ["dovoljenje", "prebivanje", "vizum", "bivanje"], u: "/si/student-welcome-guide/student-residence-permit/",
|
||||
a: "Zaprosiš za dovoljenje za začasno prebivanje zaradi študija — nekaj dokumentov in korakov; velja približno 1 leto." },
|
||||
{ k: ["stroš", "življenj", "cene", "denar", "proračun"], u: "/si/get-to-know-slovenia/",
|
||||
a: "Mesečni stroški so odvisni od mesta in nastanitve. Vodnik razčleni najemnino, hrano, prevoz in popuste." },
|
||||
{ k: ["nastanit", "stanovanje", "dom", "soba", "najem", "kje živeti"], u: "/si/student-welcome-guide/student-accommodation/",
|
||||
a: "Iščeš lahko študentske domove ali zasebne najeme. Vodnik pojasni, kako in kje iskati." },
|
||||
{ k: ["delo", "služba", "študentsko delo", "zaslužit"], u: "/si/student-welcome-guide/",
|
||||
a: "Študenti lahko delajo prek študentskega dela. Vodnik pojasni, kako to poteka ob študiju." },
|
||||
{ k: ["boni", "popust", "obrok", "subvenc"], u: "/si/student-welcome-guide/",
|
||||
a: "Študenti dobijo subvencionirane obroke (bone) in številne popuste. V vodniku piše, kako jih uporabiš." },
|
||||
{ k: ["štipend", "šolnin", "financ", "ad futura"], u: "/si/student-welcome-guide/application-deadlines/",
|
||||
a: "Šolnina je odvisna od programa in statusa; obstajajo štipendije, npr. Ad Futura. Roke preveri v vodniku." },
|
||||
{ k: ["bank", "račun", "iban"], u: "/si/blog/how-to-open-slovenian-bank-account/",
|
||||
a: "Odprtje slovenskega bančnega računa je z dokumenti enostavno. Blog objava te vodi korak za korakom." },
|
||||
{ k: ["rok", "kdaj se prijav", "datum"], u: "/si/student-welcome-guide/application-deadlines/",
|
||||
a: "Roki so odvisni od kroga in programa. Stran z roki navaja ključne datume." },
|
||||
{ k: ["član", "včlan", "pridruž"], u: "/si/become-a-member/",
|
||||
a: "Včlaniš se lahko v nekaj minutah — dobrodošli so študenti in podporniki." },
|
||||
{ k: ["podpri", "donacij", "donir", "sponz"], u: "/si/support/",
|
||||
a: "MSOS lahko podpreš z bančnim nakazilom, sponzorstvom ali partnerstvom. Glej stran Podpri." },
|
||||
{ k: ["kontakt", "e-pošta", "mail", "telefon"], u: "/si/legal/",
|
||||
a: "MSOS dosežeš na info@msosorg.com. Uradni podatki so na strani Uradni podatki." },
|
||||
{ k: ["ohrid"], u: "/si/get-to-know-macedonia/ohrid-more-than-a-postcard/", a: "Ohrid je jezersko mesto pod Unescom — stara tržnica, cerkve in Kaneo. Zgodba 'Spoznaj Makedonijo' pokaže, kaj videti." }
|
||||
]
|
||||
};
|
||||
|
||||
/* ---- text normalization + tokenizer ---- */
|
||||
function norm(s) { s = (s || "").toLowerCase(); try { s = s.normalize("NFD").replace(/[̀-ͯ]/g, ""); } catch (e) {} return s; }
|
||||
function tokens(s) { var out = [], m = norm(s).match(/[\p{L}\p{N}]+/gu); if (m) for (var i = 0; i < m.length; i++) if (m[i].length > 1) out.push(m[i]); return out; }
|
||||
|
||||
var STOP = (function () {
|
||||
var w = ("the a an of to in on for and or is are be was were do does did how what when where why who which can could would should will my your our we they it this " +
|
||||
"that these those with at as by from about into over out up down me you i us them have has had need want please get got give tell show find help hi hello hey thanks " +
|
||||
"kako kaj kje kdaj zakaj kdo kateri ali je so bo bi na za in ali da li mi me ti to ta te tega se z s v iz pri od do imam imate zelim moram lahko prosim zivjo pozdravljeni " +
|
||||
"kako sto dali koi koga kade zosto koj koja e se na vo za i ili so da li mi me ti nie toa ova imam sakam treba moze prosim zdravo").split(/\s+/);
|
||||
var o = {}; for (var i = 0; i < w.length; i++) if (w[i]) o[w[i]] = 1; return o;
|
||||
})();
|
||||
|
||||
/* ---- detect the language of the QUESTION (not just the page) ---- */
|
||||
function detectLang(text) {
|
||||
if (/[Ѐ-ӿ]/.test(text)) return "mk"; // Cyrillic → Macedonian
|
||||
var t = " " + norm(text) + " ";
|
||||
var siHits = (t.match(/ (vpis|kako|kje|stanovanje|studij|dovoljenje|prebivanje|clan|stroski|zelim|prijav|fakulteto|kaj) /g) || []).length;
|
||||
var enHits = (t.match(/ (how|what|where|the|residence|permit|university|cost|member|want|apply|study|enrol) /g) || []).length;
|
||||
if (siHits > enHits && siHits > 0) return "si";
|
||||
if (enHits > 0) return "en";
|
||||
return PAGE_LANG; // fall back to the page
|
||||
}
|
||||
|
||||
/* ---- per-language index cache + BM25 ---- */
|
||||
var CACHE = {}; // lang -> {docs, DF, AVG, N}
|
||||
function loadIndex(lang) {
|
||||
if (CACHE[lang]) return Promise.resolve(CACHE[lang]);
|
||||
return fetch("/assistant/index-" + lang + ".json").then(function (r) { return r.json(); }).then(function (docs) {
|
||||
var DF = {}, total = 0;
|
||||
for (var i = 0; i < docs.length; i++) {
|
||||
var c = docs[i]; c._t = tokens(c.x + " " + c.h + " " + c.t); c._len = c._t.length; total += c._len;
|
||||
var seen = {}; for (var j = 0; j < c._t.length; j++) { var w = c._t[j]; if (!seen[w]) { seen[w] = 1; DF[w] = (DF[w] || 0) + 1; } }
|
||||
}
|
||||
CACHE[lang] = { docs: docs, DF: DF, AVG: total / Math.max(docs.length, 1), N: docs.length };
|
||||
return CACHE[lang];
|
||||
}).catch(function () { return null; });
|
||||
}
|
||||
|
||||
function search(ix, query, k) {
|
||||
if (!ix) return [];
|
||||
var q0 = tokens(query); if (!q0.length) return [];
|
||||
var q = q0.filter(function (t) { return !STOP[t] && (!ix.DF[t] || ix.DF[t] / ix.N <= 0.4); });
|
||||
if (!q.length) q = q0.filter(function (t) { return !STOP[t]; });
|
||||
if (!q.length) q = q0;
|
||||
var k1 = 1.5, b = 0.75, scored = [];
|
||||
for (var i = 0; i < ix.docs.length; i++) {
|
||||
var c = ix.docs[i], score = 0, tf = {};
|
||||
for (var j = 0; j < c._t.length; j++) tf[c._t[j]] = (tf[c._t[j]] || 0) + 1;
|
||||
for (var t = 0; t < q.length; t++) {
|
||||
var term = q[t], f = tf[term]; if (!f) continue;
|
||||
var idf = Math.log(1 + (ix.N - ix.DF[term] + 0.5) / (ix.DF[term] + 0.5));
|
||||
score += idf * (f * (k1 + 1)) / (f + k1 * (1 - b + b * c._len / ix.AVG));
|
||||
}
|
||||
var hn = norm(c.h + " " + c.t);
|
||||
for (var h = 0; h < q.length; h++) if (hn.indexOf(q[h]) >= 0) score += 0.8;
|
||||
if (score > 0) scored.push([score, c]);
|
||||
}
|
||||
scored.sort(function (a, b) { return b[0] - a[0]; });
|
||||
// de-dupe by URL so we don't show the same page twice
|
||||
var out = [], seenU = {};
|
||||
for (var s = 0; s < scored.length && out.length < (k || 3); s++) {
|
||||
var u = scored[s][1].u; if (seenU[u]) continue; seenU[u] = 1; out.push(scored[s][1]);
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
function matchIntent(lang, query) {
|
||||
var list = INTENTS[lang] || [], q = norm(query), best = null, bestHits = 0;
|
||||
for (var i = 0; i < list.length; i++) {
|
||||
var hits = 0;
|
||||
for (var j = 0; j < list[i].k.length; j++) if (q.indexOf(norm(list[i].k[j])) >= 0) hits++;
|
||||
if (hits > bestHits) { bestHits = hits; best = list[i]; }
|
||||
}
|
||||
return bestHits > 0 ? best : null;
|
||||
}
|
||||
|
||||
function snippet(c) {
|
||||
var x = c.x, lead = c.h && x.indexOf(c.h) === 0 ? x.slice(c.h.length).replace(/^[.\s]+/, "") : x;
|
||||
if (lead.length > 200) lead = lead.slice(0, 200).replace(/\s+\S*$/, "") + "…";
|
||||
return lead;
|
||||
}
|
||||
|
||||
/* ---- privacy-safe analytics: only if the visitor accepted cookies ---- */
|
||||
function track(query, resultType, lang) {
|
||||
try {
|
||||
if (localStorage.getItem("msos-consent") !== "granted") return;
|
||||
if (typeof window.gtag !== "function") return;
|
||||
window.gtag("event", "assistant_query", {
|
||||
q: String(query).slice(0, 120), result: resultType, q_lang: lang, page_lang: PAGE_LANG
|
||||
});
|
||||
} catch (e) {}
|
||||
}
|
||||
|
||||
/* ========================= UI ========================= */
|
||||
var esc = function (s) { return String(s == null ? "" : s).replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """).replace(/'/g, "'"); };
|
||||
var UI = UIS[PAGE_LANG];
|
||||
var root, panel, log, input, launch, chipsWrap, opened = false;
|
||||
|
||||
function bubble(html, who) {
|
||||
var b = document.createElement("div");
|
||||
b.className = "msa-msg msa-" + who;
|
||||
b.innerHTML = '<div class="msa-bubble">' + html + "</div>";
|
||||
log.appendChild(b); log.scrollTop = log.scrollHeight; return b;
|
||||
}
|
||||
function linkHTML(url, label) { return '<a class="msa-link" href="' + esc(url) + '">' + esc(label || UI.more) + ' →</a>'; }
|
||||
|
||||
function answer(query) {
|
||||
if (chipsWrap) chipsWrap.style.display = "none";
|
||||
bubble(esc(query), "user");
|
||||
var typing = bubble('<span class="msa-typing"><i></i><i></i><i></i></span>', "bot");
|
||||
var lang = detectLang(query);
|
||||
loadIndex(lang).then(function (ix) {
|
||||
typing.remove();
|
||||
var intent = matchIntent(lang, query);
|
||||
var hits = search(ix, query, 3);
|
||||
if (intent) {
|
||||
bubble(esc(intent.a) + "<br>" + linkHTML(intent.u), "bot");
|
||||
var extra = hits.filter(function (c) { return c.u.replace(/\/$/, "") !== intent.u.replace(/\/$/, ""); })[0];
|
||||
if (extra) bubble('<span class="msa-also">' + esc(UI.also) + '</span><br><strong>' + esc(extra.h) + "</strong><br>" + linkHTML(extra.u), "bot");
|
||||
track(query, "curated", lang); return;
|
||||
}
|
||||
if (hits.length) {
|
||||
bubble('<span class="msa-also">' + esc(UI.found) + '</span>', "bot");
|
||||
hits.forEach(function (c) { bubble("<strong>" + esc(c.h) + "</strong><br>" + esc(snippet(c)) + "<br>" + linkHTML(c.u), "bot"); });
|
||||
track(query, "search", lang);
|
||||
} else {
|
||||
var guide = (UIS[lang] || UI).guideUrl;
|
||||
bubble(esc((UIS[lang] || UI).none) + "<br>" + linkHTML(guide, UI.more), "bot");
|
||||
track(query, "none", lang);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function renderChips() {
|
||||
chipsWrap = document.createElement("div");
|
||||
chipsWrap.className = "msa-chips";
|
||||
chipsWrap.innerHTML = '<span class="msa-chips-label">' + esc(UI.tryLabel) + "</span>";
|
||||
CHIPS[PAGE_LANG].forEach(function (q) {
|
||||
var c = document.createElement("button");
|
||||
c.type = "button"; c.className = "msa-chip"; c.textContent = q;
|
||||
c.addEventListener("click", function () { answer(q); });
|
||||
chipsWrap.appendChild(c);
|
||||
});
|
||||
log.appendChild(chipsWrap);
|
||||
}
|
||||
|
||||
function open() {
|
||||
opened = true; root.classList.add("msa-open");
|
||||
panel.setAttribute("aria-hidden", "false"); launch.setAttribute("aria-expanded", "true");
|
||||
if (!log.childNodes.length) {
|
||||
bubble(esc(UI.greeting), "bot");
|
||||
var note = document.createElement("div");
|
||||
note.className = "msa-note"; note.textContent = UI.disc;
|
||||
log.appendChild(note);
|
||||
renderChips(); loadIndex(PAGE_LANG);
|
||||
}
|
||||
setTimeout(function () { input.focus(); }, 60);
|
||||
}
|
||||
function close() { opened = false; root.classList.remove("msa-open"); panel.setAttribute("aria-hidden", "true"); launch.setAttribute("aria-expanded", "false"); launch.focus(); }
|
||||
function submit() { var q = input.value.trim(); if (!q) return; input.value = ""; answer(q); }
|
||||
|
||||
function build() {
|
||||
root = document.createElement("div");
|
||||
root.className = "msa-root"; root.setAttribute("data-msa", "1");
|
||||
// avoid overlapping the "Become a member" floating CTA on that page
|
||||
if (document.querySelector(".mm-sticky-cta")) root.classList.add("msa-left");
|
||||
root.innerHTML =
|
||||
'<button class="msa-launch" aria-expanded="false" aria-controls="msa-panel" aria-label="' + esc(UI.open) + '">' +
|
||||
'<i class="fas fa-comment-dots" aria-hidden="true"></i><span>' + esc(UI.open) + '</span></button>' +
|
||||
'<section class="msa-panel" id="msa-panel" role="dialog" aria-label="' + esc(UI.title) + '" aria-hidden="true">' +
|
||||
'<header class="msa-head"><span><i class="fas fa-graduation-cap" aria-hidden="true"></i> ' + esc(UI.title) + '</span>' +
|
||||
'<button class="msa-x" aria-label="' + esc(UI.close) + '">×</button></header>' +
|
||||
'<div class="msa-log" role="log" aria-live="polite"></div>' +
|
||||
'<form class="msa-form"><input class="msa-input" type="text" autocomplete="off" placeholder="' + esc(UI.placeholder) + '" aria-label="' + esc(UI.placeholder) + '">' +
|
||||
'<button class="msa-send" type="submit" aria-label="' + esc(UI.send) + '"><i class="fas fa-paper-plane" aria-hidden="true"></i></button></form>' +
|
||||
'<p class="msa-foot">' + esc(UI.disclaimer) + "</p>" +
|
||||
"</section>";
|
||||
document.body.appendChild(root);
|
||||
panel = root.querySelector(".msa-panel"); log = root.querySelector(".msa-log");
|
||||
input = root.querySelector(".msa-input"); launch = root.querySelector(".msa-launch");
|
||||
launch.addEventListener("click", function () { opened ? close() : open(); });
|
||||
root.querySelector(".msa-x").addEventListener("click", close);
|
||||
root.querySelector(".msa-form").addEventListener("submit", function (e) { e.preventDefault(); submit(); });
|
||||
document.addEventListener("keydown", function (e) { if (e.key === "Escape" && opened) close(); });
|
||||
}
|
||||
|
||||
if (document.readyState !== "loading") build();
|
||||
else document.addEventListener("DOMContentLoaded", build);
|
||||
})();
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
22739
code_export.txt
22739
code_export.txt
File diff suppressed because it is too large
Load Diff
|
|
@ -2,6 +2,28 @@
|
|||
Base Styles
|
||||
========================================================================== */
|
||||
|
||||
/* Screen-reader-only utility: visually hidden but announced by assistive tech.
|
||||
Used for accessible headings that don't need to be shown visually. */
|
||||
.sr-only {
|
||||
position: absolute !important;
|
||||
width: 1px; height: 1px;
|
||||
padding: 0; margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
white-space: nowrap;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/* Responsive-image safety net. Pairs with the width/height attributes now on
|
||||
every <img>: keeps images from overflowing their container and preserves
|
||||
aspect ratio (prevents distortion) for any image without a specific size
|
||||
rule. Component rules with their own height (.news-card img, .eg-thumb img,
|
||||
object-fit covers, logos, etc.) are more specific and still win. */
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Temeljni stili za celotno stran (box-sizing, osnovna pisava, barve).
|
||||
* 2. Definicija glavnega `.container` razreda za omejitev širine vsebine.
|
||||
|
|
|
|||
|
|
@ -0,0 +1,105 @@
|
|||
# Reading "Ask MSOS" questions in Google Analytics
|
||||
|
||||
The assistant sends one Google Analytics event every time someone asks a
|
||||
question (only if they accepted cookies). This guide shows how to see those
|
||||
questions — your **real FAQs** and, most valuably, the questions it **couldn't
|
||||
answer** (so you know what to add next).
|
||||
|
||||
Property: **G-WVYV807VSS**. You need *Editor/Admin* access to that GA4 property.
|
||||
|
||||
---
|
||||
|
||||
## What gets sent
|
||||
|
||||
| Event name | `assistant_query` |
|
||||
|---|---|
|
||||
| `q` | the question text (first 120 chars) |
|
||||
| `result` | `curated` (great answer) · `search` (found pages) · `none` (**no answer — a gap!**) |
|
||||
| `q_lang` | language of the question: `en` / `mk` / `si` |
|
||||
| `page_lang` | language of the page they were on |
|
||||
|
||||
---
|
||||
|
||||
## Step 1 — Register the parameters (one-time, required)
|
||||
|
||||
GA4 hides custom parameters until you register them as **custom dimensions**.
|
||||
Do this once:
|
||||
|
||||
1. GA4 → **Admin** (gear, bottom-left) → **Custom definitions** → **Create custom dimension**.
|
||||
2. Create **four** dimensions, all with **Scope = Event**:
|
||||
| Dimension name | Event parameter |
|
||||
|---|---|
|
||||
| Question | `q` |
|
||||
| Result | `result` |
|
||||
| Question language | `q_lang` |
|
||||
| Page language | `page_lang` |
|
||||
3. Click **Save** for each.
|
||||
|
||||
> ⚠️ Data only starts collecting into these dimensions **from the moment you
|
||||
> create them** (it isn't retroactive), so set them up early. Reports take
|
||||
> **24–48 h** to populate — but you can verify instantly in Step 2.
|
||||
|
||||
---
|
||||
|
||||
## Step 2 — Verify it's working right now (Realtime)
|
||||
|
||||
1. Open the live site, **Accept** the cookie banner, open **Ask MSOS**, ask a test question.
|
||||
2. In GA4 → **Reports** → **Realtime**.
|
||||
3. Scroll to **"Event count by Event name"** → you should see **`assistant_query`**.
|
||||
Click it to see the parameters coming in.
|
||||
|
||||
(If you don't see it: make sure you clicked *Accept* on cookies — the event is
|
||||
intentionally not sent otherwise.)
|
||||
|
||||
---
|
||||
|
||||
## Step 3 — Build the "Top questions" report (Exploration)
|
||||
|
||||
1. GA4 → **Explore** (left menu) → **Blank** exploration.
|
||||
2. **Variables** column → next to **Dimensions** click **+** → add **Question**,
|
||||
**Result**, **Question language**. → next to **Metrics** click **+** → add **Event count**.
|
||||
3. In the **Settings** ("Tab Settings") column:
|
||||
- **Rows** → drag in **Question**.
|
||||
- **Values** → drag in **Event count**.
|
||||
- **Filters** → drag in the field, choose... actually add a filter:
|
||||
**Event name** `exactly matches` `assistant_query`.
|
||||
(If "Event name" isn't offered, add the dimension **Event name** first.)
|
||||
4. You now have a ranked list of the most-asked questions. Sort by Event count (click the column).
|
||||
|
||||
---
|
||||
|
||||
## Step 4 — The gold mine: unanswered questions
|
||||
|
||||
Duplicate the tab (or add a filter) and set:
|
||||
|
||||
- **Rows**: Question
|
||||
- **Values**: Event count
|
||||
- **Filter**: **Result** `exactly matches` `none`
|
||||
|
||||
This is the list of questions the assistant **failed to answer**. Each one is a
|
||||
prompt to either (a) add a curated answer in `assistant.js`, or (b) write/clarify
|
||||
a page. This is how the assistant gets smarter over time.
|
||||
|
||||
Tip: also break down by **Question language** to see if MK/SI users are being
|
||||
served as well as EN users.
|
||||
|
||||
---
|
||||
|
||||
## Optional — a quick recurring check
|
||||
|
||||
Save the exploration (it autosaves). Once a week, open it and look at:
|
||||
- **Top 10 questions** → your real FAQ list (consider promoting these on pages).
|
||||
- **`result = none`** → your to-do list for new answers/content.
|
||||
- **`result = search`** (not `curated`) → common questions worth turning into a
|
||||
polished curated answer (edit the `INTENTS` list in `assistant.js`).
|
||||
|
||||
---
|
||||
|
||||
## Privacy note
|
||||
|
||||
The question text is user-typed, so **avoid encouraging personal data** in the
|
||||
prompt (the placeholder just says "Ask a question…"). Google's terms forbid
|
||||
sending personal identifiers (emails, names) to GA. Questions are truncated to
|
||||
120 characters and only sent **after cookie consent**. If you ever want zero
|
||||
text stored, you can drop the `q` parameter in `assistant.js` and keep only the
|
||||
`result`/language counts.
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
# MSOS Pre-Launch Placeholder Checklist
|
||||
|
||||
_Auto-generated. Applies to EN + MK + SI unless noted. Tick as you replace._
|
||||
|
||||
## 1. Homepage — template placeholder content (HIGH)
|
||||
- [ ] Replace **Lorem ipsum testimonials** on the homepage (en/mk/si `index.html`, testimonials section)
|
||||
- [ ] Replace the template line **"Everything you need to know about the product and billing"** with real MSOS copy
|
||||
|
||||
## 2. "Coming soon" cards
|
||||
- [ ] Blog index: **9 'Coming soon' cards** — publish or hide (en/mk/si)
|
||||
- [ ] News index: **3 'Coming soon' cards** — publish or hide (en/mk/si)
|
||||
|
||||
## 3. Student-guide hero images — 30 pages ×3 languages
|
||||
Each has a styled "Image placeholder" box awaiting a real hero image:
|
||||
- [ ] `student-welcome-guide/academic-life/`
|
||||
- [ ] `student-welcome-guide/administrative-basics/`
|
||||
- [ ] `student-welcome-guide/admission-and-enrolment/`
|
||||
- [ ] `student-welcome-guide/application-deadlines/`
|
||||
- [ ] `student-welcome-guide/arrival-checklist/`
|
||||
- [ ] `student-welcome-guide/bachelor-application/`
|
||||
- [ ] `student-welcome-guide/choose-a-programme/`
|
||||
- [ ] `student-welcome-guide/complete-student-journey/`
|
||||
- [ ] `student-welcome-guide/document-preparation/`
|
||||
- [ ] `student-welcome-guide/evs-application-guide/`
|
||||
- [ ] `student-welcome-guide/healthcare-in-slovenia/`
|
||||
- [ ] `student-welcome-guide/master-application/`
|
||||
- [ ] `student-welcome-guide/means-accommodation-address/`
|
||||
- [ ] `student-welcome-guide/official-sources-and-checklists/`
|
||||
- [ ] `student-welcome-guide/prepare-to-move/`
|
||||
- [ ] `student-welcome-guide/recognition-of-education/`
|
||||
- [ ] `student-welcome-guide/renew-change-graduate/`
|
||||
- [ ] `student-welcome-guide/rm-si-3-health-insurance/`
|
||||
- [ ] `student-welcome-guide/student-accommodation/`
|
||||
- [ ] `student-welcome-guide/student-budget/`
|
||||
- [ ] `student-welcome-guide/student-meals/`
|
||||
- [ ] `student-welcome-guide/student-organisations-and-extracurriculars/`
|
||||
- [ ] `student-welcome-guide/student-residence-permit/`
|
||||
- [ ] `student-welcome-guide/student-transport/`
|
||||
- [ ] `student-welcome-guide/student-work/`
|
||||
- [ ] `student-welcome-guide/study-cities/`
|
||||
- [ ] `student-welcome-guide/tuition-and-scholarships/`
|
||||
- [ ] `student-welcome-guide/visa-and-residence-explained/`
|
||||
- [ ] `student-welcome-guide/wellbeing-and-community/`
|
||||
- [ ] `student-welcome-guide/where-to-apply-for-residence/`
|
||||
|
||||
## 4. MSOS Hub — temporary photos (see code comments)
|
||||
- [ ] `msos-hub/`: hub-story-bg (wide renovated-Hub shot)
|
||||
- [ ] `msos-hub/`: hub-use-img photos
|
||||
- [ ] `msos-hub/`: hub-shot gallery photos
|
||||
|
||||
## 5. Verify (not placeholders, but confirm before launch)
|
||||
- [ ] Support page bank details real & correct (IBAN SI56 0284 3026 6115 703 / SWIFT LJBASI2X)
|
||||
- [ ] MK/SI meta descriptions on legal/msos-hub/support proofread by a native speaker
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -211,8 +211,8 @@
|
|||
<div class="member-content">
|
||||
<div class="member-socials">
|
||||
<a href="mailto:kristijan.popovski@msosorg.com" aria-label="Email Kristijan Popovski"><i class="fas fa-envelope"></i></a>
|
||||
<a href="https://www.linkedin.com/in/popovski-k" target="_blank" aria-label="LinkedIn profile of Kristijan Popovski"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/popovski.k/" target="_blank" aria-label="Instagram profile of Kristijan Popovski"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/in/popovski-k" target="_blank" rel="noopener" aria-label="LinkedIn profile of Kristijan Popovski"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/popovski.k/" target="_blank" rel="noopener" aria-label="Instagram profile of Kristijan Popovski"><i class="fab fa-instagram"></i></a>
|
||||
</div>
|
||||
<div class="member-info">
|
||||
<h4>Kristijan Popovski</h4>
|
||||
|
|
@ -225,8 +225,8 @@
|
|||
<div class="member-content">
|
||||
<div class="member-socials">
|
||||
<a href="mailto:lea.janackovska@msosorg.com" aria-label="Email Lea Janachkovska"><i class="fas fa-envelope"></i></a>
|
||||
<a href="https://www.linkedin.com/in/lea-janachkovska-9833b9246/" target="_blank" aria-label="LinkedIn profile of Lea Janachkovska"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/lea_janackovska" target="_blank" aria-label="Instagram profile of Lea Janachkovska"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/in/lea-janachkovska-9833b9246/" target="_blank" rel="noopener" aria-label="LinkedIn profile of Lea Janachkovska"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/lea_janackovska" target="_blank" rel="noopener" aria-label="Instagram profile of Lea Janachkovska"><i class="fab fa-instagram"></i></a>
|
||||
</div>
|
||||
<div class="member-info">
|
||||
<h4>Lea Janachkovska</h4>
|
||||
|
|
@ -239,8 +239,8 @@
|
|||
<div class="member-content">
|
||||
<div class="member-socials">
|
||||
<a href="mailto:marko.arsov@msosorg.com" aria-label="Email Marko Arsov"><i class="fas fa-envelope"></i></a>
|
||||
<a href="https://www.linkedin.com/in/marko-arsov-3313202b9" target="_blank" aria-label="LinkedIn profile of Marko Arsov"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/marko.arsov" target="_blank" aria-label="Instagram profile of Marko Arsov"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/in/marko-arsov-3313202b9" target="_blank" rel="noopener" aria-label="LinkedIn profile of Marko Arsov"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/marko.arsov" target="_blank" rel="noopener" aria-label="Instagram profile of Marko Arsov"><i class="fab fa-instagram"></i></a>
|
||||
</div>
|
||||
<div class="member-info">
|
||||
<h4>Marko Arsov</h4>
|
||||
|
|
@ -253,8 +253,8 @@
|
|||
<div class="member-content">
|
||||
<div class="member-socials">
|
||||
<a href="mailto:marija.koshtrevska@msosorg.com" aria-label="Email Marija Koshtrevska"><i class="fas fa-envelope"></i></a>
|
||||
<a href="https://www.linkedin.com/in/marija-koshtrevska/" target="_blank" aria-label="LinkedIn profile of Marija Koshtrevska"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/koshtrevska_10" target="_blank" aria-label="Instagram profile of Marija Koshtrevska"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/in/marija-koshtrevska/" target="_blank" rel="noopener" aria-label="LinkedIn profile of Marija Koshtrevska"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/koshtrevska_10" target="_blank" rel="noopener" aria-label="Instagram profile of Marija Koshtrevska"><i class="fab fa-instagram"></i></a>
|
||||
</div>
|
||||
<div class="member-info">
|
||||
<h4>Marija Koshtrevska</h4>
|
||||
|
|
@ -267,8 +267,8 @@
|
|||
<div class="member-content">
|
||||
<div class="member-socials">
|
||||
<a href="mailto:monika.velinova@msosorg.com" aria-label="Email Monika Velinova"><i class="fas fa-envelope"></i></a>
|
||||
<a href="https://www.linkedin.com/in/monika-velinova-21632517a/" target="_blank" aria-label="LinkedIn profile of Monika Velinova"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/monivelinova" target="_blank" aria-label="Instagram profile of Monika Velinova"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/in/monika-velinova-21632517a/" target="_blank" rel="noopener" aria-label="LinkedIn profile of Monika Velinova"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/monivelinova" target="_blank" rel="noopener" aria-label="Instagram profile of Monika Velinova"><i class="fab fa-instagram"></i></a>
|
||||
</div>
|
||||
<div class="member-info">
|
||||
<h4>Monika Velinova</h4>
|
||||
|
|
@ -292,12 +292,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 loading="lazy" decoding="async" src="../../images/about_volunteer_spirit.webp" alt="A group of volunteers working together with positive energy.">
|
||||
<img width="1920" height="1280" 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 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.">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
|
@ -310,7 +310,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 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.">
|
||||
<img width="1920" height="1281" 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>
|
||||
|
|
@ -328,7 +328,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 loading="lazy" decoding="async" src="../../images/about_mission.webp" alt="Mission Icon">
|
||||
<img width="510" height="200" loading="lazy" decoding="async" src="../../images/about_mission.webp" alt="Mission Icon">
|
||||
</div>
|
||||
</div>
|
||||
<!-- Vision Box -->
|
||||
|
|
@ -337,7 +337,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 loading="lazy" decoding="async" src="../../images/about_vision.webp" alt="Vision Icon">
|
||||
<img width="510" height="200" loading="lazy" decoding="async" src="../../images/about_vision.webp" alt="Vision Icon">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -347,9 +347,9 @@
|
|||
<section class="faq-cta-section">
|
||||
<div class="faq-cta-container">
|
||||
<div class="avatar-group">
|
||||
<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">
|
||||
<img width="1197" height="1197" loading="lazy" decoding="async" src="../../images/about_marija_min.webp" alt="Avatar of Marija" class="avatar">
|
||||
<img width="1083" height="1083" loading="lazy" decoding="async" src="../../images/about_kristijan_min.webp" alt="Avatar of Kristijan" class="avatar large">
|
||||
<img width="1099" height="1099" 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>
|
||||
|
|
@ -422,5 +422,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -202,14 +202,14 @@
|
|||
<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.webp" 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 width="1920" height="1280" src="../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024" loading="eager"></div><div class="mm-hero-photo mm-hero-photo--2"><img width="1430" height="757" src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana" loading="eager"></div><div class="mm-hero-photo mm-hero-photo--3"><img width="720" height="480" src="../../images/handball-2025-1.webp" alt="Cheering for Macedonia, Watching Handball Together in Slovenia" loading="eager"></div></div>
|
||||
</section>
|
||||
|
||||
<section class="mm-section">
|
||||
<h2 class="mm-h2">Why become a member?</h2>
|
||||
<div class="mm-benefits">
|
||||
<figure class="mm-benefit-photo">
|
||||
<img src="../../images/event4-image2.webp" alt="Macedonian students gathered together in Ljubljana" loading="lazy">
|
||||
<img width="1425" height="950" src="../../images/event4-image2.webp" alt="Macedonian students gathered together in Ljubljana" loading="lazy">
|
||||
<figcaption>Real events, real friendships</figcaption>
|
||||
</figure>
|
||||
<article class="mm-benefit">
|
||||
|
|
@ -241,7 +241,7 @@
|
|||
<h3>Feel at home away from home</h3><p>Belong to a community where you never have to explain where you come from.</p>
|
||||
</article>
|
||||
<figure class="mm-benefit-photo">
|
||||
<img src="../../images/msnl-3.webp" alt="Students writing their names in Cyrillic at Macedonian Student Night" loading="lazy">
|
||||
<img width="1087" height="586" src="../../images/msnl-3.webp" alt="Students writing their names in Cyrillic at Macedonian Student Night" loading="lazy">
|
||||
<figcaption>A piece of home in Slovenia</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
|
@ -293,19 +293,19 @@
|
|||
<h2 class="mm-h2">What being part of MSOS actually looks like</h2>
|
||||
<div class="mm-reals">
|
||||
<a class="mm-real" href="../projects/meet-student-slovenia-2024/">
|
||||
<div class="mm-real-media"><img src="../../images/event4-img-1.webp" alt="Start at a welcome event" loading="lazy"></div>
|
||||
<div class="mm-real-media"><img width="1920" height="1280" src="../../images/event4-img-1.webp" alt="Start at a welcome event" loading="lazy"></div>
|
||||
<div class="mm-real-body"><h3>Start at a welcome event</h3><p>Meet the community from your very first weeks in Slovenia.</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/macedonian-student-night-in-ljubljana/">
|
||||
<div class="mm-real-media"><img src="../../images/msnl-1.webp" alt="Enjoy a student night" loading="lazy"></div>
|
||||
<div class="mm-real-media"><img width="1430" height="757" src="../../images/msnl-1.webp" alt="Enjoy a student night" loading="lazy"></div>
|
||||
<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.webp" alt="Give back together" loading="lazy"></div>
|
||||
<div class="mm-real-media"><img width="720" height="480" 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.webp" alt="Cheer side by side" loading="lazy"></div>
|
||||
<div class="mm-real-media"><img width="720" height="480" 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>
|
||||
|
|
@ -333,27 +333,27 @@
|
|||
<h2 class="mm-h2">See MSOS in action</h2>
|
||||
<div class="mm-shows">
|
||||
<a class="mm-show" href="../projects/meet-student-slovenia-2024/">
|
||||
<div class="mm-show-media"><img src="../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="1920" height="1280" src="../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024" loading="lazy"></div>
|
||||
<h3>Meet Student Slovenia 2024</h3>
|
||||
</a>
|
||||
<a class="mm-show" href="../projects/macedonian-student-night-in-ljubljana/">
|
||||
<div class="mm-show-media"><img src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="1430" height="757" src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana" loading="lazy"></div>
|
||||
<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.webp" alt="Humanitarian Sports Tournament: Playing with Heart, Together for Kočani" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="720" height="480" 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.webp" alt="Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="1600" height="1067" 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/">
|
||||
<div class="mm-show-media"><img src="../../images/event4-image1.webp" alt="Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="1920" height="1280" src="../../images/event4-image1.webp" alt="Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles" loading="lazy"></div>
|
||||
<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.webp" alt="Cheering for Macedonia, Watching Handball Together in Slovenia" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="720" height="480" 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>
|
||||
|
|
@ -607,5 +607,7 @@
|
|||
<script src="../../main.js"></script>
|
||||
<script src="../../member-form.js"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -348,7 +348,7 @@
|
|||
<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>
|
||||
<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">
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -208,7 +208,7 @@
|
|||
|
||||
<h2>How we use cookies</h2>
|
||||
|
||||
<p>We keep cookies to a minimum. Strictly necessary and preference cookies (such as remembering your language) are always active. We also use Google Analytics to understand how the site is used and improve it, but only if you accept analytics cookies through our consent banner — no analytics cookies are set until you agree.</p>
|
||||
<p>We keep cookies to a minimum. Strictly necessary and preference cookies (such as remembering your language) are always active. We also use Google Analytics to understand how the site is used and improve it, but only if you accept analytics cookies through our consent banner, no analytics cookies are set until you agree.</p>
|
||||
|
||||
<h2>Types of cookies we may use</h2>
|
||||
|
||||
|
|
@ -314,5 +314,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
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.">
|
||||
<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/">
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
<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: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">
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
<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: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">
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -529,5 +529,7 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
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.">
|
||||
<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/gallery/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/gallery/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/gallery/">
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
|
||||
<meta property="og:title" content="Gallery - 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: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/gallery/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="en_GB">
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Gallery - 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: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">
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -202,9 +202,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../en/projects/meet-student-slovenia-2024/" aria-label="Meet Student Slovenia 2024">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024 — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event4-img-2.webp" alt="Meet Student Slovenia 2024 — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event4-img-3.webp" alt="Meet Student Slovenia 2024 — photo 3"><span class="cover-more-badge">+9</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024, photo 1"></span>
|
||||
<span class="album-tile"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event4-img-2.webp" alt="Meet Student Slovenia 2024, photo 2"></span>
|
||||
<span class="album-tile"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event4-img-3.webp" alt="Meet Student Slovenia 2024, photo 3"><span class="cover-more-badge">+9</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Meet Student Slovenia 2024</h3>
|
||||
|
|
@ -215,9 +215,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../en/projects/meet-student-slovenia-2023/" aria-label="Meet Student Slovenia 2023">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt="Meet Student Slovenia 2023 — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event3-photo-2.webp" alt="Meet Student Slovenia 2023 — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event3-photo-3.webp" alt="Meet Student Slovenia 2023 — photo 3"><span class="cover-more-badge">+7</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt="Meet Student Slovenia 2023, photo 1"></span>
|
||||
<span class="album-tile"><img width="1920" height="1317" loading="lazy" decoding="async" src="../../images/event3-photo-2.webp" alt="Meet Student Slovenia 2023, photo 2"></span>
|
||||
<span class="album-tile"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event3-photo-3.webp" alt="Meet Student Slovenia 2023, photo 3"><span class="cover-more-badge">+7</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Meet Student Slovenia 2023</h3>
|
||||
|
|
@ -228,9 +228,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../en/projects/humanitarian-tournament-in-maribor/" aria-label="Humanitarian Tournament in Maribor">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/maribor-tournament-1.webp" alt="Humanitarian Tournament in Maribor — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/maribor-tournament-2.webp" alt="Humanitarian Tournament in Maribor — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/maribor-tournament-3.webp" alt="Humanitarian Tournament in Maribor — photo 3"><span class="cover-more-badge">+7</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/maribor-tournament-1.webp" alt="Humanitarian Tournament in Maribor, photo 1"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/maribor-tournament-2.webp" alt="Humanitarian Tournament in Maribor, photo 2"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/maribor-tournament-3.webp" alt="Humanitarian Tournament in Maribor, photo 3"><span class="cover-more-badge">+7</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Humanitarian Tournament in Maribor</h3>
|
||||
|
|
@ -241,9 +241,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../en/projects/macedonian-student-night-in-ljubljana/" aria-label="Macedonian Student Night in Ljubljana">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/msnl-2.webp" alt="Macedonian Student Night in Ljubljana — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/msnl-3.webp" alt="Macedonian Student Night in Ljubljana — photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="1430" height="757" loading="lazy" decoding="async" src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana, photo 1"></span>
|
||||
<span class="album-tile"><img width="936" height="422" loading="lazy" decoding="async" src="../../images/msnl-2.webp" alt="Macedonian Student Night in Ljubljana, photo 2"></span>
|
||||
<span class="album-tile"><img width="1087" height="586" loading="lazy" decoding="async" src="../../images/msnl-3.webp" alt="Macedonian Student Night in Ljubljana, photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Macedonian Student Night in Ljubljana</h3>
|
||||
|
|
@ -254,9 +254,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../en/projects/paint-and-wine-at-sunset/" aria-label="Paint & Wine at Sunset">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/paint-wine-1.webp" alt="Paint & Wine at Sunset — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/paint-wine-2.webp" alt="Paint & Wine at Sunset — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/paint-wine-3.webp" alt="Paint & Wine at Sunset — photo 3"><span class="cover-more-badge">+6</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="1600" height="1067" loading="lazy" decoding="async" src="../../images/paint-wine-1.webp" alt="Paint & Wine at Sunset, photo 1"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/paint-wine-2.webp" alt="Paint & Wine at Sunset, photo 2"></span>
|
||||
<span class="album-tile"><img width="1600" height="1067" loading="lazy" decoding="async" src="../../images/paint-wine-3.webp" alt="Paint & Wine at Sunset, photo 3"><span class="cover-more-badge">+6</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Paint & Wine at Sunset</h3>
|
||||
|
|
@ -267,9 +267,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../en/projects/watching-handball-together-in-slovenia/" aria-label="Watching Handball Together in Slovenia">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/handball-2025-1.webp" alt="Watching Handball Together in Slovenia — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/handball-2025-2.webp" alt="Watching Handball Together in Slovenia — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/handball-2025-3.webp" alt="Watching Handball Together in Slovenia — photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/handball-2025-1.webp" alt="Watching Handball Together in Slovenia, photo 1"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/handball-2025-2.webp" alt="Watching Handball Together in Slovenia, photo 2"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/handball-2025-3.webp" alt="Watching Handball Together in Slovenia, photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Watching Handball Together in Slovenia</h3>
|
||||
|
|
@ -280,9 +280,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../en/projects/morning-coffee-in-front-of-ctk/" aria-label="Morning Coffee in front of CTK">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/event4-image1.webp" alt="Morning Coffee in front of CTK — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event4-image2.webp" alt="Morning Coffee in front of CTK — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event4-image3.webp" alt="Morning Coffee in front of CTK — photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event4-image1.webp" alt="Morning Coffee in front of CTK, photo 1"></span>
|
||||
<span class="album-tile"><img width="1425" height="950" loading="lazy" decoding="async" src="../../images/event4-image2.webp" alt="Morning Coffee in front of CTK, photo 2"></span>
|
||||
<span class="album-tile"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event4-image3.webp" alt="Morning Coffee in front of CTK, photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Morning Coffee in front of CTK</h3>
|
||||
|
|
@ -293,9 +293,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../en/projects/in-memory-of-frosina-kulakova/" aria-label="In Memory of Frosina Kulakova">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/frosina-1.webp" alt="In Memory of Frosina Kulakova — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/frosina-2.webp" alt="In Memory of Frosina Kulakova — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/frosina-3.webp" alt="In Memory of Frosina Kulakova — photo 3"></span>
|
||||
<span class="album-tile album-tile--main"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/frosina-1.webp" alt="In Memory of Frosina Kulakova, photo 1"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/frosina-2.webp" alt="In Memory of Frosina Kulakova, photo 2"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/frosina-3.webp" alt="In Memory of Frosina Kulakova, photo 3"></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>In Memory of Frosina Kulakova</h3>
|
||||
|
|
@ -306,9 +306,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../en/projects/in-memory-of-the-kochani-victims/" aria-label="In Memory of the Kochani Victims">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/kochani-1.webp" alt="In Memory of the Kochani Victims — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/kochani-2.webp" alt="In Memory of the Kochani Victims — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/kochani-3.webp" alt="In Memory of the Kochani Victims — photo 3"><span class="cover-more-badge">+1</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/kochani-1.webp" alt="In Memory of the Kochani Victims, photo 1"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/kochani-2.webp" alt="In Memory of the Kochani Victims, photo 2"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/kochani-3.webp" alt="In Memory of the Kochani Victims, photo 3"><span class="cover-more-badge">+1</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>In Memory of the Kochani Victims</h3>
|
||||
|
|
@ -382,5 +382,7 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-food-shared-table-hero.webp" alt="A shared Macedonian table with salads, bread, beans, and other dishes">
|
||||
<img width="1209" height="806" 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>
|
||||
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
<p>It does not need decoration. Bread and time are enough.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-food-tavce-gravce.webp" alt="Tavče gravče baked and served in a clay dish">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -275,7 +275,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 loading="lazy" decoding="async" src="../../../images/macedonia-food-ajvar-preparation.webp" alt="Roasted red peppers being prepared for homemade ajvar">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -308,7 +308,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 loading="lazy" decoding="async" src="../../../images/macedonia-food-pastrmajlija.webp" alt="A traditional oval pastrmajlija topped with seasoned meat">
|
||||
<img width="1000" height="667" 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>
|
||||
|
||||
|
|
@ -391,5 +391,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-heritage-stobi-street-hero.webp" alt="An ancient street and building remains at the archaeological site of Stobi">
|
||||
<img width="1050" height="700" 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>
|
||||
|
||||
|
|
@ -246,7 +246,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 loading="lazy" decoding="async" src="../../../images/macedonia-heritage-heraclea-mosaic.webp" alt="A preserved early Christian mosaic at Heraclea Lyncestis near Bitola">
|
||||
<img width="766" height="511" 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>
|
||||
|
||||
|
|
@ -285,7 +285,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 loading="lazy" decoding="async" src="../../../images/macedonia-heritage-kokino.jpg" alt="The rocky archaeological landscape of Kokino at Tatićev Kamen">
|
||||
<img width="810" height="540" 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>
|
||||
|
||||
|
|
@ -302,7 +302,7 @@
|
|||
<p>Heritage becomes stronger when the route between objects is preserved in the story.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-heritage-krusevo-makedonium.jpg" alt="The Ilinden Monument, known as Makedonium, above Krusevo">
|
||||
<img width="590" height="393" 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>
|
||||
|
||||
|
|
@ -397,5 +397,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -197,7 +197,7 @@
|
|||
<h1>Get to know Macedonia</h1>
|
||||
<p class="page-description">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, and conversations that continue long after the coffee is finished. These are the places, traditions, tastes, and stories we carry with us and want to share with you.</p>
|
||||
<form class="subscribe-form">
|
||||
<input type="email" placeholder="Enter your email">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
<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>
|
||||
|
|
@ -222,7 +222,7 @@
|
|||
<!-- Story: Welcome to Macedonia -->
|
||||
<article class="post-card" data-category="identity">
|
||||
<a href="welcome-to-macedonia/" class="post-link">
|
||||
<img loading="lazy" decoding="async" src="../../images/macedonia-welcome-skopje-square-hero.webp" alt="Macedonia Square in central Skopje" class="post-image">
|
||||
<img width="810" height="540" 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>
|
||||
|
|
@ -233,7 +233,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 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">
|
||||
<img width="750" height="500" 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>
|
||||
|
|
@ -244,7 +244,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 loading="lazy" decoding="async" src="../../images/macedonia-skopje-stone-bridge-hero.webp" alt="The Stone Bridge over the Vardar in Skopje" class="post-image">
|
||||
<img width="810" height="540" 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>
|
||||
|
|
@ -255,7 +255,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 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">
|
||||
<img width="1209" height="806" 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>
|
||||
|
|
@ -266,7 +266,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 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">
|
||||
<img width="1400" height="933" 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>
|
||||
|
|
@ -277,7 +277,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 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">
|
||||
<img width="1050" height="700" 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>
|
||||
|
|
@ -364,5 +364,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-culture-oro-celebration-hero.webp" alt="Several generations joining the same oro at a Macedonian celebration">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -244,7 +244,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 loading="lazy" decoding="async" src="../../../images/macedonia-culture-tapan-zurla.jpg" alt="Musicians playing tapan and zurla at an outdoor gathering">
|
||||
<img width="539" height="359" 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>
|
||||
|
||||
|
|
@ -281,7 +281,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 loading="lazy" decoding="async" src="../../../images/macedonia-culture-kopachkata.jpg" alt="Kopachkata dancers holding their belts in a semicircle in Dramche">
|
||||
<img width="547" height="365" 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>
|
||||
|
||||
|
|
@ -314,7 +314,7 @@
|
|||
<p>Change becomes continuity when people know what they are carrying forward.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/msos-macedonian-music-event.webp" alt="Macedonian students dancing together at an MSOS event in Slovenia">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -397,5 +397,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-ohrid-kaneo-hero.webp" alt="The Church of St. John at Kaneo above Lake Ohrid">
|
||||
<img width="750" height="500" 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>
|
||||
|
||||
|
|
@ -240,7 +240,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 loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-chinar-tree.webp" alt="The ancient plane tree, the Chinar, in central Ohrid">
|
||||
<img width="1080" height="720" 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>
|
||||
|
||||
|
|
@ -273,7 +273,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 loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-plaosnik.webp" alt="Archaeological remains and the Church of Saint Clement at Plaošnik">
|
||||
<img width="810" height="540" 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>
|
||||
|
||||
|
|
@ -304,7 +304,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 loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-traditional-houses.webp" alt="Traditional houses along a narrow street in Ohrid's old town">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -389,5 +389,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-skopje-stone-bridge-hero.webp" alt="The Stone Bridge over the Vardar in Skopje">
|
||||
<img width="810" height="540" 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>
|
||||
|
||||
|
|
@ -242,7 +242,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 loading="lazy" decoding="async" src="../../../images/macedonia-skopje-old-bazaar.webp" alt="A working street in the Old Skopje Bazaar">
|
||||
<img width="1020" height="680" 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>
|
||||
|
||||
|
|
@ -273,7 +273,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 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">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -292,7 +292,7 @@
|
|||
<p>The contrast is not abstract. It can happen within the same day.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-skopje-vodno-view.webp" alt="A view of Skopje from Mount Vodno">
|
||||
<img width="825" height="550" 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>
|
||||
|
||||
|
|
@ -379,5 +379,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-welcome-skopje-square-hero.webp" alt="Macedonia Square in central Skopje">
|
||||
<img width="810" height="540" 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>
|
||||
|
||||
|
|
@ -238,7 +238,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 loading="lazy" decoding="async" src="../../../images/macedonia-welcome-hospitality.webp" alt="A traditional Macedonian table filled with local dishes">
|
||||
<img width="960" height="640" 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>
|
||||
|
||||
|
|
@ -267,7 +267,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 loading="lazy" decoding="async" src="../../../images/macedonia-welcome-heritage.webp" alt="The Robevci Family House in the old town of Ohrid">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -376,5 +376,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-food-regional-table-hero.webp" alt="Several regional Slovenian dishes served together on a table">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -252,7 +252,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 loading="lazy" decoding="async" src="../../../images/slovenia-food-idrijski-zlikrofi.webp" alt="Idrijski žlikrofi served with a meat sauce">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -269,7 +269,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 loading="lazy" decoding="async" src="../../../images/slovenia-food-frika.webp" alt="Frika made with local cheese and potatoes">
|
||||
<img width="720" height="480" 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>
|
||||
|
||||
|
|
@ -298,7 +298,7 @@
|
|||
<p>A shop-bought slice can introduce the flavour. A homemade potica tells a fuller story.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-food-potica.jpg" alt="Sliced walnut potica baked in a traditional round mould">
|
||||
<img width="891" height="594" 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>
|
||||
|
||||
|
|
@ -381,5 +381,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -197,7 +197,7 @@
|
|||
<h1>Get to know Slovenia</h1>
|
||||
<p class="page-description">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 begin to feel familiar. Through these stories, we share the places, tastes, traditions, and everyday details that helped many of us get to know the country we now also call home.</p>
|
||||
<form class="subscribe-form">
|
||||
<input type="email" placeholder="Enter your email">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
<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>
|
||||
|
|
@ -222,7 +222,7 @@
|
|||
<!-- Story: Welcome to Slovenia -->
|
||||
<article class="post-card" data-category="identity">
|
||||
<a href="welcome-to-slovenia/" class="post-link">
|
||||
<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">
|
||||
<img width="1200" height="800" 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>
|
||||
|
|
@ -233,7 +233,7 @@
|
|||
<!-- Story: Ljubljana Through Our Eyes -->
|
||||
<article class="post-card" data-category="places">
|
||||
<a href="ljubljana-through-our-eyes/" class="post-link">
|
||||
<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">
|
||||
<img width="1400" height="933" 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>
|
||||
|
|
@ -244,7 +244,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 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">
|
||||
<img width="1023" height="682" 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>
|
||||
|
|
@ -255,7 +255,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 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">
|
||||
<img width="1400" height="933" 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>
|
||||
|
|
@ -266,7 +266,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 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">
|
||||
<img width="1400" height="933" 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>
|
||||
|
|
@ -277,7 +277,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 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">
|
||||
<img width="1400" height="933" 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>
|
||||
|
|
@ -364,5 +364,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<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">
|
||||
<img width="1023" height="682" 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>
|
||||
|
||||
|
|
@ -242,7 +242,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 loading="lazy" decoding="async" src="../../../images/slovenia-bled-penzion-mlino.webp" alt="A boat on Lake Bled by the shore at Mlino">
|
||||
<img width="750" height="500" 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>
|
||||
|
||||
|
|
@ -261,7 +261,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 loading="lazy" decoding="async" src="../../../images/slovenia-bled-ojstrica-view.webp" alt="Lake Bled, its island, and castle viewed from Ojstrica">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -280,7 +280,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 loading="lazy" decoding="async" src="../../../images/slovenia-bled-velika-zaka.webp" alt="Rowing activity beside Lake Bled at Velika Zaka">
|
||||
<img width="1000" height="667" 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>
|
||||
|
||||
|
|
@ -377,5 +377,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-ljubljana-river-life-hero.webp" alt="A crowd gathered along the Ljubljanica during an event in central Ljubljana">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -238,7 +238,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 loading="lazy" decoding="async" src="../../../images/slovenia-ljubljana-central-market.jpg" alt="Food stalls at the Open Kitchen market in central Ljubljana">
|
||||
<img width="675" height="450" 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>
|
||||
|
||||
|
|
@ -257,7 +257,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 loading="lazy" decoding="async" src="../../../images/slovenia-ljubljana-trnovski-pristan.webp" alt="People beside the river at Trnovski pristan in Ljubljana">
|
||||
<img width="750" height="500" 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>
|
||||
|
||||
|
|
@ -286,7 +286,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 loading="lazy" decoding="async" src="../../../images/slovenia-ljubljana-metelkova.webp" alt="Murals and outdoor artworks at Metelkova in Ljubljana">
|
||||
<img width="804" height="536" 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>
|
||||
|
||||
|
|
@ -371,5 +371,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-habits-guest-slippers-hero.webp" alt="A pair of slippers by the entrance of a Slovenian home">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -254,7 +254,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 loading="lazy" decoding="async" src="../../../images/slovenia-habits-mountain-greeting.webp" alt="Hikers on a mountain path in Slovenia">
|
||||
<img width="1152" height="768" 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>
|
||||
|
||||
|
|
@ -303,7 +303,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 loading="lazy" decoding="async" src="../../../images/slovenia-habits-sunday-lunch.webp" alt="A traditional Slovenian meal shared around a table">
|
||||
<img width="900" height="600" 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>
|
||||
|
||||
|
|
@ -398,5 +398,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-heritage-plecnik-daily-life-hero.webp" alt="A Plečnik-designed public space beside the Ljubljanica">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -246,7 +246,7 @@
|
|||
<p>Škocjan is the place where that hidden geology becomes impossible to ignore.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-heritage-skocjan-caves.webp" alt="A visitor bridge above the underground river in Škocjan Caves">
|
||||
<img width="1152" height="768" 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>
|
||||
|
||||
|
|
@ -267,7 +267,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 loading="lazy" decoding="async" src="../../../images/slovenia-heritage-idrija-mine.jpg" alt="A preserved tunnel connected with Idrija's mercury mine">
|
||||
<img width="678" height="452" 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>
|
||||
|
||||
|
|
@ -300,7 +300,7 @@
|
|||
<p>The stronger picture appears when different regions are allowed to keep their own stories.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-heritage-beekeeping.webp" alt="A Slovenian apiary with painted beehive panels">
|
||||
<img width="1280" height="853" 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>
|
||||
|
||||
|
|
@ -383,5 +383,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-welcome-hero.webp" alt="Lake Jasna near Kranjska Gora, with mountain peaks reflected in the water">
|
||||
<img width="1200" height="800" 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>
|
||||
|
||||
|
|
@ -222,7 +222,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 loading="lazy" decoding="async" src="../../../images/slovenia-welcome-landscape.webp" alt="Vineyards and rolling hills in the Slovenian wine country">
|
||||
<img width="975" height="650" 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>
|
||||
|
||||
|
|
@ -237,7 +237,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 loading="lazy" decoding="async" src="../../../images/slovenia-welcome-ljubljana.webp" alt="People spending time beside the Ljubljanica River in central Ljubljana">
|
||||
<img width="1400" height="933" 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>
|
||||
|
||||
|
|
@ -354,5 +354,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
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.">
|
||||
<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/">
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
<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: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">
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
<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: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">
|
||||
|
|
@ -54,10 +54,11 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file (corrected path) -->
|
||||
<link rel="stylesheet" href="../css/main.css">
|
||||
<link rel="preload" as="image" href="../images/HeroSection-img1.webp">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -213,27 +214,27 @@
|
|||
<div class="marquee" aria-label="Our partners and supporters">
|
||||
<div class="marquee-track">
|
||||
<div class="marquee-group">
|
||||
<img src="../images/partners/ambasada-slo.png" alt="Embassy of the Republic of Slovenia in Skopje" loading="lazy">
|
||||
<img src="../images/partners/nlb.png" alt="NLB Banka" loading="lazy">
|
||||
<img src="../images/partners/ctk.png" alt="Central Technological Library (CTK), University of Ljubljana" loading="lazy">
|
||||
<img src="../images/partners/dsmp.png" alt="Association of Slovenian and Macedonian Entrepreneurs (DSMP)" loading="lazy">
|
||||
<img src="../images/partners/kampus.png" alt="Kampus" loading="lazy">
|
||||
<img src="../images/partners/povezani.png" alt="Povezani" loading="lazy">
|
||||
<img src="../images/partners/mzzt-mk-wide.png" alt="Ministry of Foreign Affairs and Trade of North Macedonia" loading="lazy">
|
||||
<img src="../images/partners/kdm-makedonija.png" alt="Macedonian Cultural Association Macedonia in Ljubljana" loading="lazy">
|
||||
<img src="../images/partners/ambasada-mkd.png" alt="Embassy of the Republic of North Macedonia in Slovenia" loading="lazy"> <img src="../images/partners/mojster.png" alt="Spletni Mojster" loading="lazy">
|
||||
<img width="499" height="98" src="../images/partners/ambasada-slo.png" alt="Embassy of the Republic of Slovenia in Skopje" loading="lazy">
|
||||
<img width="469" height="107" src="../images/partners/nlb.png" alt="NLB Banka" loading="lazy">
|
||||
<img width="800" height="287" src="../images/partners/ctk.png" alt="Central Technological Library (CTK), University of Ljubljana" loading="lazy">
|
||||
<img width="411" height="149" src="../images/partners/dsmp.png" alt="Association of Slovenian and Macedonian Entrepreneurs (DSMP)" loading="lazy">
|
||||
<img width="501" height="156" src="../images/partners/kampus.png" alt="Kampus" loading="lazy">
|
||||
<img width="327" height="155" src="../images/partners/povezani.png" alt="Povezani" loading="lazy">
|
||||
<img width="816" height="202" src="../images/partners/mzzt-mk-wide.png" alt="Ministry of Foreign Affairs and Trade of North Macedonia" loading="lazy">
|
||||
<img width="400" height="403" src="../images/partners/kdm-makedonija.png" alt="Macedonian Cultural Association Macedonia in Ljubljana" loading="lazy">
|
||||
<img width="917" height="206" src="../images/partners/ambasada-mkd.png" alt="Embassy of the Republic of North Macedonia in Slovenia" loading="lazy"> <img width="534" height="35" src="../images/partners/mojster.png" alt="Spletni Mojster" loading="lazy">
|
||||
|
||||
</div>
|
||||
<div class="marquee-group" aria-hidden="true">
|
||||
<img src="../images/partners/ambasada-slo.png" alt="" loading="lazy">
|
||||
<img src="../images/partners/nlb.png" alt="" loading="lazy">
|
||||
<img src="../images/partners/ctk.png" alt="" loading="lazy">
|
||||
<img src="../images/partners/dsmp.png" alt="" loading="lazy">
|
||||
<img src="../images/partners/kampus.png" alt="" loading="lazy">
|
||||
<img src="../images/partners/povezani.png" alt="" loading="lazy">
|
||||
<img src="../images/partners/mzzt-mk-wide.png" alt="" loading="lazy">
|
||||
<img src="../images/partners/kdm-makedonija.png" alt="" loading="lazy">
|
||||
<img src="../images/partners/ambasada-mkd.png" alt="" loading="lazy"> <img src="../images/partners/mojster.png" alt="" loading="lazy">
|
||||
<img width="499" height="98" src="../images/partners/ambasada-slo.png" alt="" loading="lazy">
|
||||
<img width="469" height="107" src="../images/partners/nlb.png" alt="" loading="lazy">
|
||||
<img width="800" height="287" src="../images/partners/ctk.png" alt="" loading="lazy">
|
||||
<img width="411" height="149" src="../images/partners/dsmp.png" alt="" loading="lazy">
|
||||
<img width="501" height="156" src="../images/partners/kampus.png" alt="" loading="lazy">
|
||||
<img width="327" height="155" src="../images/partners/povezani.png" alt="" loading="lazy">
|
||||
<img width="816" height="202" src="../images/partners/mzzt-mk-wide.png" alt="" loading="lazy">
|
||||
<img width="400" height="403" src="../images/partners/kdm-makedonija.png" alt="" loading="lazy">
|
||||
<img width="917" height="206" src="../images/partners/ambasada-mkd.png" alt="" loading="lazy"> <img width="534" height="35" src="../images/partners/mojster.png" alt="" loading="lazy">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -243,9 +244,8 @@
|
|||
|
||||
<section class="meet-the-team-section">
|
||||
<div class="video-container">
|
||||
<img loading="lazy" decoding="async" src="../images/about_us-timeline-milestones_img0.webp" alt="MSOS team group photo" class="video-thumbnail">
|
||||
<img width="1920" height="1280" loading="lazy" decoding="async" src="../images/about_us-timeline-milestones_img0.webp" alt="MSOS team group photo" class="video-thumbnail">
|
||||
<div class="video-overlay"></div>
|
||||
<button class="play-button" aria-label="Play video"></button>
|
||||
</div>
|
||||
<div class="team-content">
|
||||
<h2>Every Student Has a Story, Here’s Ours</h2>
|
||||
|
|
@ -258,7 +258,7 @@
|
|||
<div class="activities-header">
|
||||
<span class="activities-eyebrow">What we do</span>
|
||||
<h2>Activities</h2>
|
||||
<p>From your first application to graduation, we’re by your side — support, friendships, culture, and a voice that speaks up for Macedonian students in Slovenia.</p>
|
||||
<p>From your first application to graduation, we’re by your side, support, friendships, culture, and a voice that speaks up for Macedonian students in Slovenia.</p>
|
||||
</div>
|
||||
<div class="activities-content">
|
||||
<div class="activities-nav" role="tablist" aria-label="Activities">
|
||||
|
|
@ -283,19 +283,19 @@
|
|||
<div class="activities-panels">
|
||||
<div class="activity-panel active" role="tabpanel" data-panel="0">
|
||||
<p>We know moving to a new country can feel overwhelming, so we’re here to make it easier. From helping you with university applications to finding your way around student life in Slovenia, you can always count on us. We offer free consultations, answer your questions on Instagram and Facebook (yes, even late at night), and host events where you can meet others and hear real experiences first-hand. With mentorship, info sessions, and a friendly community by your side, you’ll never have to go through the journey alone.</p>
|
||||
<div class="activity-panel-media"><img src="../images/img1-08.09.2025.webp" alt="Students receiving support and guidance" loading="lazy"></div>
|
||||
<div class="activity-panel-media"><img width="820" height="400" src="../images/img1-08.09.2025.webp" alt="Students receiving support and guidance" loading="lazy"></div>
|
||||
</div>
|
||||
<div class="activity-panel" role="tabpanel" data-panel="1" hidden>
|
||||
<p>Student life is so much more than lectures and exams — it’s about the moments in between. At MSOS, we create those moments: from parties, concerts, and casual hangouts, to cinema nights, excursions, and team-building trips. We also host talks and events where you can share ideas, meet new people, and feel part of something bigger. Whether you’re connecting with Macedonian students or making friends with Slovenians and internationals, our activities are all about building a community where you can relax, have fun, and create memories that last long after university.</p>
|
||||
<div class="activity-panel-media"><img src="../images/img2-08.09.2025.webp" alt="Students socialising and having fun at an event" loading="lazy"></div>
|
||||
<p>Student life is so much more than lectures and exams, it’s about the moments in between. At MSOS, we create those moments: from parties, concerts, and casual hangouts, to cinema nights, excursions, and team-building trips. We also host talks and events where you can share ideas, meet new people, and feel part of something bigger. Whether you’re connecting with Macedonian students or making friends with Slovenians and internationals, our activities are all about building a community where you can relax, have fun, and create memories that last long after university.</p>
|
||||
<div class="activity-panel-media"><img width="820" height="400" src="../images/img2-08.09.2025.webp" alt="Students socialising and having fun at an event" loading="lazy"></div>
|
||||
</div>
|
||||
<div class="activity-panel" role="tabpanel" data-panel="2" hidden>
|
||||
<p>Studying abroad isn’t only about lectures and exams — it’s also about growing as a person. That’s why we mix learning with culture. We run study groups and small workshops where you can share knowledge and pick up new skills. At the same time, we keep our traditions alive with cultural evenings, music, food, and gatherings that remind us of home. It’s a balance: support for your studies, and a space to stay connected to who we are.</p>
|
||||
<div class="activity-panel-media"><img src="../images/img3-08.09.2025.webp" alt="An educational workshop and cultural gathering" loading="lazy"></div>
|
||||
<p>Studying abroad isn’t only about lectures and exams, it’s also about growing as a person. That’s why we mix learning with culture. We run study groups and small workshops where you can share knowledge and pick up new skills. At the same time, we keep our traditions alive with cultural evenings, music, food, and gatherings that remind us of home. It’s a balance: support for your studies, and a space to stay connected to who we are.</p>
|
||||
<div class="activity-panel-media"><img width="820" height="400" src="../images/img3-08.09.2025.webp" alt="An educational workshop and cultural gathering" loading="lazy"></div>
|
||||
</div>
|
||||
<div class="activity-panel" role="tabpanel" data-panel="3" hidden>
|
||||
<p>Studying abroad comes with challenges, and sometimes students need a voice that’s heard. At MSOS, we take that role seriously. We organise meetings with government representatives, ministries, embassies, universities, and other key institutions to make sure the interests of Macedonian students in Slovenia are on the table. From campus issues to academic policies and integration, we work to solve problems, push for positive changes, and create a better experience for all of us.</p>
|
||||
<div class="activity-panel-media"><img src="../images/img4-08.09.2025.webp" alt="MSOS members representing students at a formal meeting" loading="lazy"></div>
|
||||
<div class="activity-panel-media"><img width="820" height="400" src="../images/img4-08.09.2025.webp" alt="MSOS members representing students at a formal meeting" loading="lazy"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -309,7 +309,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.webp" alt="Proof-of-means amount updated to €507,43 per month" loading="lazy">
|
||||
<img width="1600" height="1067" 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">
|
||||
|
|
@ -352,7 +352,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 loading="lazy" decoding="async" src="../images/7-graphicdesigner.webp" alt="Aleksandar Popovski">
|
||||
<img width="640" height="640" loading="lazy" decoding="async" src="../images/7-graphicdesigner.webp" alt="Aleksandar Popovski">
|
||||
<div>
|
||||
<h4>Aleksandar Popovski</h4>
|
||||
<p>Graphic designer at MSOS</p>
|
||||
|
|
@ -363,7 +363,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 loading="lazy" decoding="async" src="../images/11-boy.webp" alt="Another team member">
|
||||
<img width="1280" height="1920" loading="lazy" decoding="async" src="../images/11-boy.webp" alt="Another team member">
|
||||
<div>
|
||||
<h4>Aleksandar Popovski</h4>
|
||||
<p>Graphic designer at MSOS</p>
|
||||
|
|
@ -376,7 +376,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 loading="lazy" decoding="async" src="../images/12-girl2.webp" alt="Another partner">
|
||||
<img width="1280" height="1920" loading="lazy" decoding="async" src="../images/12-girl2.webp" alt="Another partner">
|
||||
<div>
|
||||
<h4>Aleksandar Popovski</h4>
|
||||
<p>Graphic designer at MSOS</p>
|
||||
|
|
@ -387,7 +387,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 loading="lazy" decoding="async" src="../images/10-girl1.webp" alt="Another team member">
|
||||
<img width="1280" height="1920" loading="lazy" decoding="async" src="../images/10-girl1.webp" alt="Another team member">
|
||||
<div>
|
||||
<h4>Aleksandar Popovski</h4>
|
||||
<p>Graphic designer at MSOS</p>
|
||||
|
|
@ -409,9 +409,9 @@
|
|||
</div>
|
||||
</div>
|
||||
<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.webp" alt="Cheering for Macedonia, watching handball together in Slovenia" loading="lazy"></div>
|
||||
<div class="join-cta-photo join-cta-photo--1"><img width="1920" height="1280" src="../images/event4-img-1.webp" alt="Meet Student Slovenia 2024" loading="lazy"></div>
|
||||
<div class="join-cta-photo join-cta-photo--2"><img width="1430" height="757" src="../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana" loading="lazy"></div>
|
||||
<div class="join-cta-photo join-cta-photo--3"><img width="720" height="480" src="../images/handball-2025-1.webp" alt="Cheering for Macedonia, watching handball together in Slovenia" loading="lazy"></div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
@ -454,9 +454,9 @@
|
|||
</div>
|
||||
<div class="faq-footer">
|
||||
<div class="avatar-group">
|
||||
<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">
|
||||
<img width="1280" height="1920" loading="lazy" decoding="async" src="../images/11-boy.webp" alt="Avatar 1" class="avatar">
|
||||
<img width="1280" height="1920" loading="lazy" decoding="async" src="../images/10-girl1.webp" alt="Avatar 2" class="avatar large">
|
||||
<img width="1280" height="1920" 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>
|
||||
|
|
@ -530,5 +530,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -4,6 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Official information - Macedonian Student Organisation in Slovenia</title>
|
||||
<meta name="description" content="Official information about the Macedonian Student Organisation in Slovenia (MSOS): legal registration data, tax number, IBAN and contact details.">
|
||||
<!-- 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>
|
||||
|
|
@ -52,7 +53,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -208,8 +209,8 @@
|
|||
<div class="legal-row"><span class="k">Registration number</span><span class="v">4128133000</span></div>
|
||||
<div class="legal-row"><span class="k">Tax number</span><span class="v">44932448</span></div>
|
||||
<div class="legal-row"><span class="k">VAT liable</span><span class="v">No</span></div>
|
||||
<div class="legal-row"><span class="k">Main activity (SKD)</span><span class="v">94.999 – Activities of other membership organisations n.e.c.</span></div>
|
||||
<div class="legal-row"><span class="k">Institutional sector (SKIS)</span><span class="v">S.15000 – Non-profit institutions serving households</span></div>
|
||||
<div class="legal-row"><span class="k">Main activity (SKD)</span><span class="v">94.999, Activities of other membership organisations n.e.c.</span></div>
|
||||
<div class="legal-row"><span class="k">Institutional sector (SKIS)</span><span class="v">S.15000, Non-profit institutions serving households</span></div>
|
||||
<div class="legal-row"><span class="k">Date of registration</span><span class="v">9 September 2024</span></div>
|
||||
</div>
|
||||
<div class="legal-card">
|
||||
|
|
@ -288,5 +289,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>MSOS Hub - Macedonian Student Organisation in Slovenia</title>
|
||||
<meta name="description" content="Discover the MSOS Hub in Ljubljana — the community space of the Macedonian Student Organisation in Slovenia for events, gatherings and student life.">
|
||||
<!-- 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>
|
||||
|
|
@ -51,7 +52,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -208,7 +209,7 @@
|
|||
<!-- Story: a space we built together -->
|
||||
<!-- NOTE: hub-story-bg is a temporary placeholder. Replace with the wide shot of the renovated Hub. -->
|
||||
<section class="hub-story">
|
||||
<img class="hub-story-bg" loading="lazy" decoding="async" src="../../images/event3-photo-6.webp" alt="The renovated Hub space">
|
||||
<img width="1920" height="1239" class="hub-story-bg" loading="lazy" decoding="async" src="../../images/event3-photo-6.webp" alt="The renovated Hub space">
|
||||
<div class="hub-story-overlay"></div>
|
||||
<div class="hub-story-inner">
|
||||
<div class="hub-story-text">
|
||||
|
|
@ -232,42 +233,42 @@
|
|||
<div class="hub-group">
|
||||
<!-- NOTE: hub-use-img src values are temporary placeholders. Replace with the final photos. -->
|
||||
<div class="hub-use">
|
||||
<img class="hub-use-img" loading="lazy" decoding="async" src="../../images/event3-photo-2.webp" alt="Cultural evening at the Hub">
|
||||
<img width="1920" height="1317" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event3-photo-2.webp" alt="Cultural evening at the Hub">
|
||||
<div class="hub-use-body">
|
||||
<h3>Cultural & niche events</h3>
|
||||
<p>Small cultural evenings, talks, exhibitions and community happenings.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hub-use">
|
||||
<img class="hub-use-img" loading="lazy" decoding="async" src="../../images/event4-image1.webp" alt="A celebration at the Hub">
|
||||
<img width="1920" height="1280" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event4-image1.webp" alt="A celebration at the Hub">
|
||||
<div class="hub-use-body">
|
||||
<h3>Birthdays & celebrations</h3>
|
||||
<p>Host a birthday, a name day or any celebration with your friends.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hub-use">
|
||||
<img class="hub-use-img" loading="lazy" decoding="async" src="../../images/event3-photo-5.webp" alt="Watching sports together at the Hub">
|
||||
<img width="1920" height="1337" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event3-photo-5.webp" alt="Watching sports together at the Hub">
|
||||
<div class="hub-use-body">
|
||||
<h3>Sports watching</h3>
|
||||
<p>Gather to cheer on the game together on the projector screen.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hub-use">
|
||||
<img class="hub-use-img" loading="lazy" decoding="async" src="../../images/event3-photo-8.webp" alt="Music and dancing at the Hub">
|
||||
<img width="1920" height="1341" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event3-photo-8.webp" alt="Music and dancing at the Hub">
|
||||
<div class="hub-use-body">
|
||||
<h3>Singing & dancing</h3>
|
||||
<p>An evening of music, singing and dancing, with the piano right there.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hub-use">
|
||||
<img class="hub-use-img" loading="lazy" decoding="async" src="../../images/event4-image3.webp" alt="A meeting at the Hub">
|
||||
<img width="1920" height="1280" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event4-image3.webp" alt="A meeting at the Hub">
|
||||
<div class="hub-use-body">
|
||||
<h3>Meetings</h3>
|
||||
<p>A quiet, equipped room for club, society or team meetings.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hub-use">
|
||||
<img class="hub-use-img" loading="lazy" decoding="async" src="../../images/event4-image5.webp" alt="Project work at the Hub">
|
||||
<img width="1317" height="877" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event4-image5.webp" alt="Project work at the Hub">
|
||||
<div class="hub-use-body">
|
||||
<h3>Project work</h3>
|
||||
<p>Space to focus, brainstorm on the whiteboard and get things done together.</p>
|
||||
|
|
@ -307,10 +308,10 @@
|
|||
</div>
|
||||
<!-- NOTE: hub-shot images are temporary placeholders. Replace with the final Hub photos. -->
|
||||
<div class="hub-gallery">
|
||||
<figure class="hub-shot"><img loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt="A gathering at the Hub"></figure>
|
||||
<figure class="hub-shot"><img loading="lazy" decoding="async" src="../../images/event3-photo-3.webp" alt="An event in the Hub space"></figure>
|
||||
<figure class="hub-shot"><img loading="lazy" decoding="async" src="../../images/event4-image2.webp" alt="People together at the Hub"></figure>
|
||||
<figure class="hub-shot"><img loading="lazy" decoding="async" src="../../images/event3-photo-9.webp" alt="A moment from an event at the Hub"></figure>
|
||||
<figure class="hub-shot"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt="A gathering at the Hub"></figure>
|
||||
<figure class="hub-shot"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event3-photo-3.webp" alt="An event in the Hub space"></figure>
|
||||
<figure class="hub-shot"><img width="1425" height="950" loading="lazy" decoding="async" src="../../images/event4-image2.webp" alt="People together at the Hub"></figure>
|
||||
<figure class="hub-shot"><img width="960" height="540" loading="lazy" decoding="async" src="../../images/event3-photo-9.webp" alt="A moment from an event at the Hub"></figure>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
@ -323,8 +324,8 @@
|
|||
</div>
|
||||
<!-- Partner logos (community credited below) -->
|
||||
<div class="hub-logos">
|
||||
<div class="hub-logo"><img loading="lazy" decoding="async" src="../../images/partners/kdm-makedonija.png" alt="Macedonian Cultural Association Macedonia in Ljubljana"></div>
|
||||
<div class="hub-logo"><img loading="lazy" decoding="async" src="../../images/partners/mzzt-mk.png" alt="Ministry of Foreign Affairs and Trade of North Macedonia"></div>
|
||||
<div class="hub-logo"><img width="400" height="403" loading="lazy" decoding="async" src="../../images/partners/kdm-makedonija.png" alt="Macedonian Cultural Association Macedonia in Ljubljana"></div>
|
||||
<div class="hub-logo"><img width="622" height="281" loading="lazy" decoding="async" src="../../images/partners/mzzt-mk.png" alt="Ministry of Foreign Affairs and Trade of North Macedonia"></div>
|
||||
</div>
|
||||
<p class="hub-community"><i class="fas fa-heart" aria-hidden="true"></i> And the MSOS community.</p>
|
||||
</div>
|
||||
|
|
@ -405,5 +406,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
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.">
|
||||
<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/">
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
<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: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">
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
<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: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">
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -206,7 +206,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.webp" alt="Proof-of-means amount updated to €507,43 per month" loading="lazy">
|
||||
<img width="1600" height="1067" 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">
|
||||
|
|
@ -250,7 +250,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.webp" alt="In Memory of the Victims of the Kochani Tragedy" loading="lazy">
|
||||
<img width="720" height="480" 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">
|
||||
|
|
@ -261,7 +261,7 @@
|
|||
</article>
|
||||
<article class="newshub-card" data-type="project">
|
||||
<a class="newshub-media" href="../../en/projects/meet-student-slovenia-2024/">
|
||||
<img src="../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024" loading="lazy">
|
||||
<img width="1920" height="1280" src="../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024" 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">
|
||||
|
|
@ -272,7 +272,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.webp" alt="Humanitarian Sports Tournament: Playing with Heart, Together for Kočani" loading="lazy">
|
||||
<img width="720" height="480" 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">
|
||||
|
|
@ -283,7 +283,7 @@
|
|||
</article>
|
||||
<article class="newshub-card" data-type="project">
|
||||
<a class="newshub-media" href="../../en/projects/macedonian-student-night-in-ljubljana/">
|
||||
<img src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana" loading="lazy">
|
||||
<img width="1430" height="757" src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana" 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">
|
||||
|
|
@ -294,7 +294,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.webp" alt="Cheering for Macedonia, Watching Handball Together in Slovenia" loading="lazy">
|
||||
<img width="720" height="480" 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">
|
||||
|
|
@ -305,7 +305,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.webp" alt="In Memory of Frosina Kulakova" loading="lazy">
|
||||
<img width="720" height="480" 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">
|
||||
|
|
@ -316,7 +316,7 @@
|
|||
</article>
|
||||
<article class="newshub-card" data-type="project">
|
||||
<a class="newshub-media" href="../../en/projects/meet-student-slovenia-2023/">
|
||||
<img src="../../images/event3-photo-1.webp" alt="Meet Student Slovenia 2023" loading="lazy">
|
||||
<img width="1920" height="1280" src="../../images/event3-photo-1.webp" alt="Meet Student Slovenia 2023" 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">
|
||||
|
|
@ -327,7 +327,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.webp" alt="Paint & Wine at Sunset, Celebrating Women’s Day with Art & Music" loading="lazy">
|
||||
<img width="1600" height="1067" 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">
|
||||
|
|
@ -338,7 +338,7 @@
|
|||
</article>
|
||||
<article class="newshub-card" data-type="project">
|
||||
<a class="newshub-media" href="../../en/projects/morning-coffee-in-front-of-ctk/">
|
||||
<img src="../../images/event4-image1.webp" alt="Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles" loading="lazy">
|
||||
<img width="1920" height="1280" src="../../images/event4-image1.webp" alt="Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles" 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">
|
||||
|
|
@ -391,10 +391,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -469,5 +469,7 @@
|
|||
<script src="../../main.js"></script>
|
||||
<script src="../../news-filter.js"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -199,7 +199,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 fetchpriority="high" src="../../../images/news-proof-of-means.webp" alt="A cash box filled with euro coins and banknotes">
|
||||
<img width="1600" height="1067" 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">
|
||||
|
|
@ -209,7 +209,7 @@
|
|||
</div>
|
||||
<div class="news-source">
|
||||
<span class="news-source-label"><i class="fas fa-up-right-from-square" aria-hidden="true"></i> Official source</span>
|
||||
<a href="https://www.gov.si/teme/denarna-socialna-pomoc/" target="_blank" rel="noopener">gov.si — Financial social assistance</a>
|
||||
<a href="https://www.gov.si/teme/denarna-socialna-pomoc/" target="_blank" rel="noopener">gov.si, Financial social assistance</a>
|
||||
</div>
|
||||
<a class="btn btn-secondary news-article-cta" href="../../student-welcome-guide/student-residence-permit/">Read the residence permit guide</a>
|
||||
</article>
|
||||
|
|
@ -217,10 +217,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -295,5 +295,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -273,7 +273,7 @@
|
|||
|
||||
<h2>Cookies</h2>
|
||||
|
||||
<p>This website uses strictly necessary and preference cookies, and Google Analytics to measure how the site is used — but only if you accept analytics cookies through our consent banner. We do not use advertising cookies. You can read more in our <a href="../cookie-policy/">Cookie Policy</a>.</p>
|
||||
<p>This website uses strictly necessary and preference cookies, and Google Analytics to measure how the site is used, but only if you accept analytics cookies through our consent banner. We do not use advertising cookies. You can read more in our <a href="../cookie-policy/">Cookie Policy</a>.</p>
|
||||
|
||||
<h2>Data security</h2>
|
||||
|
||||
|
|
@ -357,5 +357,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -201,14 +201,14 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/maribor-tournament-1.webp" alt="The MSOS Maribor team at the humanitarian sports tournament">
|
||||
<img width="720" height="480" 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 loading="lazy" decoding="async" src="../../../images/maribor-tournament-2.webp" alt="A snapshot of the MSOS Maribor team.">
|
||||
<img width="720" height="480" 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>
|
||||
|
||||
|
|
@ -217,14 +217,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 loading="lazy" decoding="async" src="../../../images/maribor-tournament-3.webp" alt="Teams lined up and ready for the start of the tournament.">
|
||||
<img width="720" height="480" 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 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.">
|
||||
<img width="720" height="480" 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>
|
||||
|
||||
|
|
@ -235,12 +235,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 loading="lazy" decoding="async" src="../../../images/maribor-tournament-5.webp" alt="When victory means more than a game, lifted high by the team.">
|
||||
<img width="720" height="480" 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 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.">
|
||||
<img width="720" height="480" 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>
|
||||
|
||||
|
|
@ -249,7 +249,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 loading="lazy" decoding="async" src="../../../images/maribor-tournament-7.webp" alt="High-fives, trophies, and smiles, celebrating victory on and off the court.">
|
||||
<img width="720" height="480" 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>
|
||||
|
||||
|
|
@ -260,7 +260,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 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.">
|
||||
<img width="720" height="480" 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>
|
||||
|
||||
|
|
@ -269,14 +269,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 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.">
|
||||
<img width="720" height="480" 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 loading="lazy" decoding="async" src="../../../images/maribor-tournament-10.webp" alt="The MSOS Maribor team celebrating together after a successful tournament.">
|
||||
<img width="720" height="480" 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>
|
||||
|
|
@ -284,16 +284,16 @@
|
|||
<section class="event-gallery">
|
||||
<h2 class="event-gallery-title">Photos from the event</h2>
|
||||
<div class="event-gallery-grid js-lightbox">
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/maribor-tournament-1.webp" data-caption="Humanitarian Tournament in Maribor"><img loading="lazy" decoding="async" src="../../../images/maribor-tournament-1.webp" alt="Humanitarian Tournament in Maribor — photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/maribor-tournament-2.webp" data-caption="Humanitarian Tournament in Maribor"><img loading="lazy" decoding="async" src="../../../images/maribor-tournament-2.webp" alt="Humanitarian Tournament in Maribor — photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/maribor-tournament-3.webp" data-caption="Humanitarian Tournament in Maribor"><img loading="lazy" decoding="async" src="../../../images/maribor-tournament-3.webp" alt="Humanitarian Tournament in Maribor — photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/maribor-tournament-4.webp" data-caption="Humanitarian Tournament in Maribor"><img loading="lazy" decoding="async" src="../../../images/maribor-tournament-4.webp" alt="Humanitarian Tournament in Maribor — photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/maribor-tournament-5.webp" data-caption="Humanitarian Tournament in Maribor"><img loading="lazy" decoding="async" src="../../../images/maribor-tournament-5.webp" alt="Humanitarian Tournament in Maribor — photo 5"><span class="eg-more">+5</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/maribor-tournament-6.webp" data-caption="Humanitarian Tournament in Maribor"><img loading="lazy" decoding="async" src="../../../images/maribor-tournament-6.webp" alt="Humanitarian Tournament in Maribor — photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/maribor-tournament-7.webp" data-caption="Humanitarian Tournament in Maribor"><img loading="lazy" decoding="async" src="../../../images/maribor-tournament-7.webp" alt="Humanitarian Tournament in Maribor — photo 7"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/maribor-tournament-8.webp" data-caption="Humanitarian Tournament in Maribor"><img loading="lazy" decoding="async" src="../../../images/maribor-tournament-8.webp" alt="Humanitarian Tournament in Maribor — photo 8"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/maribor-tournament-9.webp" data-caption="Humanitarian Tournament in Maribor"><img loading="lazy" decoding="async" src="../../../images/maribor-tournament-9.webp" alt="Humanitarian Tournament in Maribor — photo 9"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/maribor-tournament-10.webp" data-caption="Humanitarian Tournament in Maribor"><img loading="lazy" decoding="async" src="../../../images/maribor-tournament-10.webp" alt="Humanitarian Tournament in Maribor — photo 10"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/maribor-tournament-1.webp" data-caption="Humanitarian Tournament in Maribor"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/maribor-tournament-1.webp" alt="Humanitarian Tournament in Maribor, photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/maribor-tournament-2.webp" data-caption="Humanitarian Tournament in Maribor"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/maribor-tournament-2.webp" alt="Humanitarian Tournament in Maribor, photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/maribor-tournament-3.webp" data-caption="Humanitarian Tournament in Maribor"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/maribor-tournament-3.webp" alt="Humanitarian Tournament in Maribor, photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/maribor-tournament-4.webp" data-caption="Humanitarian Tournament in Maribor"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/maribor-tournament-4.webp" alt="Humanitarian Tournament in Maribor, photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/maribor-tournament-5.webp" data-caption="Humanitarian Tournament in Maribor"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/maribor-tournament-5.webp" alt="Humanitarian Tournament in Maribor, photo 5"><span class="eg-more">+5</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/maribor-tournament-6.webp" data-caption="Humanitarian Tournament in Maribor"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/maribor-tournament-6.webp" alt="Humanitarian Tournament in Maribor, photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/maribor-tournament-7.webp" data-caption="Humanitarian Tournament in Maribor"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/maribor-tournament-7.webp" alt="Humanitarian Tournament in Maribor, photo 7"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/maribor-tournament-8.webp" data-caption="Humanitarian Tournament in Maribor"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/maribor-tournament-8.webp" alt="Humanitarian Tournament in Maribor, photo 8"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/maribor-tournament-9.webp" data-caption="Humanitarian Tournament in Maribor"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/maribor-tournament-9.webp" alt="Humanitarian Tournament in Maribor, photo 9"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/maribor-tournament-10.webp" data-caption="Humanitarian Tournament in Maribor"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/maribor-tournament-10.webp" alt="Humanitarian Tournament in Maribor, photo 10"></button>
|
||||
</div>
|
||||
</section>
|
||||
</article>
|
||||
|
|
@ -301,10 +301,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -378,5 +378,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -201,14 +201,14 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/frosina-1.webp" alt="Candles and flowers in memory of Frosina Kulakova">
|
||||
<img width="720" height="480" 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 loading="lazy" decoding="async" src="../../../images/frosina-2.webp" alt="Students lighting candles in memory of Frosina">
|
||||
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/frosina-2.webp" alt="Students lighting candles in memory of Frosina">
|
||||
</figure>
|
||||
|
||||
<h2>A message of unity</h2>
|
||||
|
|
@ -218,7 +218,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 loading="lazy" decoding="async" src="../../../images/frosina-3.webp" alt="Flowers and candles laid in remembrance">
|
||||
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/frosina-3.webp" alt="Flowers and candles laid in remembrance">
|
||||
</figure>
|
||||
|
||||
<h2>Closing thoughts</h2>
|
||||
|
|
@ -233,9 +233,9 @@
|
|||
<section class="event-gallery">
|
||||
<h2 class="event-gallery-title">Photos from the event</h2>
|
||||
<div class="event-gallery-grid js-lightbox">
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/frosina-1.webp" data-caption="In Memory of Frosina Kulakova"><img loading="lazy" decoding="async" src="../../../images/frosina-1.webp" alt="In Memory of Frosina Kulakova — photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/frosina-2.webp" data-caption="In Memory of Frosina Kulakova"><img loading="lazy" decoding="async" src="../../../images/frosina-2.webp" alt="In Memory of Frosina Kulakova — photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/frosina-3.webp" data-caption="In Memory of Frosina Kulakova"><img loading="lazy" decoding="async" src="../../../images/frosina-3.webp" alt="In Memory of Frosina Kulakova — photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/frosina-1.webp" data-caption="In Memory of Frosina Kulakova"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/frosina-1.webp" alt="In Memory of Frosina Kulakova, photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/frosina-2.webp" data-caption="In Memory of Frosina Kulakova"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/frosina-2.webp" alt="In Memory of Frosina Kulakova, photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/frosina-3.webp" data-caption="In Memory of Frosina Kulakova"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/frosina-3.webp" alt="In Memory of Frosina Kulakova, photo 3"></button>
|
||||
</div>
|
||||
</section>
|
||||
</article>
|
||||
|
|
@ -243,10 +243,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -320,5 +320,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -201,7 +201,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/kochani-1.webp" alt="Candles and flowers at Kongresni trg in memory of the Kochani victims">
|
||||
<img width="720" height="480" 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">
|
||||
|
|
@ -210,7 +210,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 loading="lazy" decoding="async" src="../../../images/kochani-2.webp" alt="Candlelight and flowers at the memorial gathering in Ljubljana">
|
||||
<img width="720" height="480" 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>
|
||||
|
|
@ -220,7 +220,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 loading="lazy" decoding="async" src="../../../images/kochani-3.webp" alt="A sea of candles and flowers left by attendees">
|
||||
<img width="720" height="480" 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>
|
||||
|
|
@ -230,7 +230,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 loading="lazy" decoding="async" src="../../../images/kochani-4.webp" alt="Attendees standing together during the moment of silence">
|
||||
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-4.webp" alt="Attendees standing together during the moment of silence">
|
||||
</figure>
|
||||
|
||||
<h2>Closing words</h2>
|
||||
|
|
@ -243,10 +243,10 @@
|
|||
<section class="event-gallery">
|
||||
<h2 class="event-gallery-title">Photos from the event</h2>
|
||||
<div class="event-gallery-grid js-lightbox">
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/kochani-1.webp" data-caption="In Memory of the Kochani Victims"><img loading="lazy" decoding="async" src="../../../images/kochani-1.webp" alt="In Memory of the Kochani Victims — photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/kochani-2.webp" data-caption="In Memory of the Kochani Victims"><img loading="lazy" decoding="async" src="../../../images/kochani-2.webp" alt="In Memory of the Kochani Victims — photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/kochani-3.webp" data-caption="In Memory of the Kochani Victims"><img loading="lazy" decoding="async" src="../../../images/kochani-3.webp" alt="In Memory of the Kochani Victims — photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/kochani-4.webp" data-caption="In Memory of the Kochani Victims"><img loading="lazy" decoding="async" src="../../../images/kochani-4.webp" alt="In Memory of the Kochani Victims — photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/kochani-1.webp" data-caption="In Memory of the Kochani Victims"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-1.webp" alt="In Memory of the Kochani Victims, photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/kochani-2.webp" data-caption="In Memory of the Kochani Victims"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-2.webp" alt="In Memory of the Kochani Victims, photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/kochani-3.webp" data-caption="In Memory of the Kochani Victims"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-3.webp" alt="In Memory of the Kochani Victims, photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/kochani-4.webp" data-caption="In Memory of the Kochani Victims"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-4.webp" alt="In Memory of the Kochani Victims, photo 4"></button>
|
||||
</div>
|
||||
</section>
|
||||
</article>
|
||||
|
|
@ -254,10 +254,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -331,5 +331,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -228,7 +228,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 loading="lazy" decoding="async" src="../../images/maribor-tournament-1.webp" alt="Humanitarian Sports Tournament in Maribor" class="post-image">
|
||||
<img width="720" height="480" 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>
|
||||
|
|
@ -239,7 +239,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 loading="lazy" decoding="async" src="../../images/kochani-1.webp" alt="In Memory of the Kochani Victims" class="post-image">
|
||||
<img width="720" height="480" 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>
|
||||
|
|
@ -250,7 +250,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 loading="lazy" decoding="async" src="../../images/paint-wine-1.webp" alt="Paint & Wine at Sunset" class="post-image">
|
||||
<img width="1600" height="1067" 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>
|
||||
|
|
@ -261,7 +261,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 loading="lazy" decoding="async" src="../../images/frosina-1.webp" alt="In Memory of Frosina Kulakova" class="post-image">
|
||||
<img width="720" height="480" 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>
|
||||
|
|
@ -272,7 +272,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 loading="lazy" decoding="async" src="../../images/handball-2025-1.webp" alt="Watching Handball Together in Slovenia" class="post-image">
|
||||
<img width="720" height="480" 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>
|
||||
|
|
@ -283,7 +283,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 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">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
|
@ -294,7 +294,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 loading="lazy" decoding="async" src="../../images/event4-image1.webp" alt="Students enjoying coffee and burek in front of CTK library" class="post-image">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
|
@ -305,7 +305,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 loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt="Panel discussion at the 'Meet Student Slovenia 2023' event" class="post-image">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
|
@ -316,7 +316,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 loading="lazy" decoding="async" src="../../images/msnl-1.webp" alt="Atmosphere from the Macedonian Student Night in Ljubljana" class="post-image">
|
||||
<img width="1430" height="757" 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>
|
||||
|
|
@ -348,10 +348,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -425,5 +425,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -229,7 +229,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/msnl-1.webp" alt="Atmosphere from the Macedonian Student Night in Ljubljana">
|
||||
<img width="1430" height="757" fetchpriority="high" src="../../../images/msnl-1.webp" alt="Atmosphere from the Macedonian Student Night in Ljubljana">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
|
|
@ -239,7 +239,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 loading="lazy" decoding="async" src="../../../images/msnl-2.webp" alt="Preparations and meetings for the Macedonian Student Night">
|
||||
<img width="936" height="422" 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>
|
||||
|
||||
|
|
@ -247,7 +247,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 loading="lazy" decoding="async" src="../../../images/msnl-3.webp" alt="Poster where Slovenians learn the Macedonian alphabet">
|
||||
<img width="1087" height="586" 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>
|
||||
|
||||
|
|
@ -260,14 +260,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 loading="lazy" decoding="async" src="../../../images/msnl-4.webp" alt="Stands with Macedonian symbols, food, and drinks">
|
||||
<img width="1430" height="641" 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 loading="lazy" decoding="async" src="../../../images/msnl-5.webp" alt="Mini quiz about Macedonia">
|
||||
<img width="1194" height="565" 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>
|
||||
|
||||
|
|
@ -275,7 +275,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 loading="lazy" decoding="async" src="../../../images/msnl-6.webp" alt="Kristijan and Bisera with Ambassador Zelenkovska and Mr. Nasteski">
|
||||
<img width="856" height="452" 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>
|
||||
|
||||
|
|
@ -292,7 +292,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 loading="lazy" decoding="async" src="../../../images/msnl-7.webp" alt="The dedicated team of volunteers after cleaning up the venue">
|
||||
<img width="1430" height="592" 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>
|
||||
|
|
@ -301,20 +301,20 @@
|
|||
<section class="event-gallery">
|
||||
<h2 class="event-gallery-title">Photos from the event</h2>
|
||||
<div class="event-gallery-grid js-lightbox">
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/msnl-1.webp" data-caption="Macedonian Student Night in Ljubljana"><img loading="lazy" decoding="async" src="../../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana — photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/msnl-2.webp" data-caption="Macedonian Student Night in Ljubljana"><img loading="lazy" decoding="async" src="../../../images/msnl-2.webp" alt="Macedonian Student Night in Ljubljana — photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/msnl-3.webp" data-caption="Macedonian Student Night in Ljubljana"><img loading="lazy" decoding="async" src="../../../images/msnl-3.webp" alt="Macedonian Student Night in Ljubljana — photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/msnl-4.webp" data-caption="Macedonian Student Night in Ljubljana"><img loading="lazy" decoding="async" src="../../../images/msnl-4.webp" alt="Macedonian Student Night in Ljubljana — photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/msnl-5.webp" data-caption="Macedonian Student Night in Ljubljana"><img loading="lazy" decoding="async" src="../../../images/msnl-5.webp" alt="Macedonian Student Night in Ljubljana — photo 5"><span class="eg-more">+2</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/msnl-6.webp" data-caption="Macedonian Student Night in Ljubljana"><img loading="lazy" decoding="async" src="../../../images/msnl-6.webp" alt="Macedonian Student Night in Ljubljana — photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/msnl-7.webp" data-caption="Macedonian Student Night in Ljubljana"><img loading="lazy" decoding="async" src="../../../images/msnl-7.webp" alt="Macedonian Student Night in Ljubljana — photo 7"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/msnl-1.webp" data-caption="Macedonian Student Night in Ljubljana"><img width="1430" height="757" loading="lazy" decoding="async" src="../../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana, photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/msnl-2.webp" data-caption="Macedonian Student Night in Ljubljana"><img width="936" height="422" loading="lazy" decoding="async" src="../../../images/msnl-2.webp" alt="Macedonian Student Night in Ljubljana, photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/msnl-3.webp" data-caption="Macedonian Student Night in Ljubljana"><img width="1087" height="586" loading="lazy" decoding="async" src="../../../images/msnl-3.webp" alt="Macedonian Student Night in Ljubljana, photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/msnl-4.webp" data-caption="Macedonian Student Night in Ljubljana"><img width="1430" height="641" loading="lazy" decoding="async" src="../../../images/msnl-4.webp" alt="Macedonian Student Night in Ljubljana, photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/msnl-5.webp" data-caption="Macedonian Student Night in Ljubljana"><img width="1194" height="565" loading="lazy" decoding="async" src="../../../images/msnl-5.webp" alt="Macedonian Student Night in Ljubljana, photo 5"><span class="eg-more">+2</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/msnl-6.webp" data-caption="Macedonian Student Night in Ljubljana"><img width="856" height="452" loading="lazy" decoding="async" src="../../../images/msnl-6.webp" alt="Macedonian Student Night in Ljubljana, photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/msnl-7.webp" data-caption="Macedonian Student Night in Ljubljana"><img width="1430" height="592" loading="lazy" decoding="async" src="../../../images/msnl-7.webp" alt="Macedonian Student Night in Ljubljana, photo 7"></button>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="article-footer">
|
||||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img loading="lazy" decoding="async" src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<img width="1083" height="1083" 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>
|
||||
|
|
@ -335,10 +335,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -412,5 +412,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -232,7 +232,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/event3-photo-1.webp" alt="Panel discussion at the 'Meet Student Slovenia 2023' event">
|
||||
<img width="1920" height="1280" fetchpriority="high" src="../../../images/event3-photo-1.webp" alt="Panel discussion at the 'Meet Student Slovenia 2023' event">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
|
|
@ -242,7 +242,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 loading="lazy" decoding="async" src="../../../images/event3-photo-2.webp" alt="Participants of the panel discussion">
|
||||
<img width="1920" height="1317" 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>
|
||||
|
||||
|
|
@ -250,12 +250,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 loading="lazy" decoding="async" src="../../../images/event3-photo-3.webp" alt="Vasil Hanџiski at the opening of the event">
|
||||
<img width="1920" height="1280" 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 loading="lazy" decoding="async" src="../../../images/event3-photo-4.webp" alt="The audience at the event">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
||||
|
|
@ -264,15 +264,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 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">
|
||||
<img width="1920" height="1337" loading="lazy" decoding="async" src="../../../images/event3-photo-5.webp" alt="Mr. Branko Gregović and H.E. Gregor Presker">
|
||||
<img width="1920" height="1239" 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 loading="lazy" decoding="async" src="../../../images/event3-photo-7.webp" alt="Plaques for NLB Bank Skopje and the Embassy of the Republic of Slovenia">
|
||||
<img width="1920" height="1337" 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>
|
||||
|
||||
|
|
@ -280,7 +280,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 loading="lazy" decoding="async" src="../../../images/event3-photo-8.webp" alt="Attendees at the event">
|
||||
<img width="1920" height="1341" 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>
|
||||
|
||||
|
|
@ -293,7 +293,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 loading="lazy" decoding="async" src="../../../images/event3-photo-9.webp" alt="The Consul introducing students to the process of obtaining a temporary residence permit">
|
||||
<img width="960" height="540" 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>
|
||||
|
||||
|
|
@ -301,7 +301,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 loading="lazy" decoding="async" src="../../../images/event3-photo-10.webp" alt="Poster for the 'Meet Student Slovenia' event">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
||||
|
|
@ -316,34 +316,29 @@
|
|||
<li>Radio MOF (media partner)</li>
|
||||
</ol>
|
||||
<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 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>
|
||||
|
||||
|
||||
<section class="event-gallery">
|
||||
<h2 class="event-gallery-title">Photos from the event</h2>
|
||||
<div class="event-gallery-grid js-lightbox">
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event3-photo-1.webp" data-caption="Meet Student Slovenia 2023"><img loading="lazy" decoding="async" src="../../../images/event3-photo-1.webp" alt="Meet Student Slovenia 2023 — photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event3-photo-2.webp" data-caption="Meet Student Slovenia 2023"><img loading="lazy" decoding="async" src="../../../images/event3-photo-2.webp" alt="Meet Student Slovenia 2023 — photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event3-photo-3.webp" data-caption="Meet Student Slovenia 2023"><img loading="lazy" decoding="async" src="../../../images/event3-photo-3.webp" alt="Meet Student Slovenia 2023 — photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event3-photo-4.webp" data-caption="Meet Student Slovenia 2023"><img loading="lazy" decoding="async" src="../../../images/event3-photo-4.webp" alt="Meet Student Slovenia 2023 — photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event3-photo-5.webp" data-caption="Meet Student Slovenia 2023"><img loading="lazy" decoding="async" src="../../../images/event3-photo-5.webp" alt="Meet Student Slovenia 2023 — photo 5"><span class="eg-more">+5</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event3-photo-6.webp" data-caption="Meet Student Slovenia 2023"><img loading="lazy" decoding="async" src="../../../images/event3-photo-6.webp" alt="Meet Student Slovenia 2023 — photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event3-photo-7.webp" data-caption="Meet Student Slovenia 2023"><img loading="lazy" decoding="async" src="../../../images/event3-photo-7.webp" alt="Meet Student Slovenia 2023 — photo 7"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event3-photo-8.webp" data-caption="Meet Student Slovenia 2023"><img loading="lazy" decoding="async" src="../../../images/event3-photo-8.webp" alt="Meet Student Slovenia 2023 — photo 8"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event3-photo-9.webp" data-caption="Meet Student Slovenia 2023"><img loading="lazy" decoding="async" src="../../../images/event3-photo-9.webp" alt="Meet Student Slovenia 2023 — photo 9"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event3-photo-10.webp" data-caption="Meet Student Slovenia 2023"><img loading="lazy" decoding="async" src="../../../images/event3-photo-10.webp" alt="Meet Student Slovenia 2023 — photo 10"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event3-photo-1.webp" data-caption="Meet Student Slovenia 2023"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event3-photo-1.webp" alt="Meet Student Slovenia 2023, photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event3-photo-2.webp" data-caption="Meet Student Slovenia 2023"><img width="1920" height="1317" loading="lazy" decoding="async" src="../../../images/event3-photo-2.webp" alt="Meet Student Slovenia 2023, photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event3-photo-3.webp" data-caption="Meet Student Slovenia 2023"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event3-photo-3.webp" alt="Meet Student Slovenia 2023, photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event3-photo-4.webp" data-caption="Meet Student Slovenia 2023"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event3-photo-4.webp" alt="Meet Student Slovenia 2023, photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event3-photo-5.webp" data-caption="Meet Student Slovenia 2023"><img width="1920" height="1337" loading="lazy" decoding="async" src="../../../images/event3-photo-5.webp" alt="Meet Student Slovenia 2023, photo 5"><span class="eg-more">+5</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event3-photo-6.webp" data-caption="Meet Student Slovenia 2023"><img width="1920" height="1239" loading="lazy" decoding="async" src="../../../images/event3-photo-6.webp" alt="Meet Student Slovenia 2023, photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event3-photo-7.webp" data-caption="Meet Student Slovenia 2023"><img width="1920" height="1337" loading="lazy" decoding="async" src="../../../images/event3-photo-7.webp" alt="Meet Student Slovenia 2023, photo 7"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event3-photo-8.webp" data-caption="Meet Student Slovenia 2023"><img width="1920" height="1341" loading="lazy" decoding="async" src="../../../images/event3-photo-8.webp" alt="Meet Student Slovenia 2023, photo 8"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event3-photo-9.webp" data-caption="Meet Student Slovenia 2023"><img width="960" height="540" loading="lazy" decoding="async" src="../../../images/event3-photo-9.webp" alt="Meet Student Slovenia 2023, photo 9"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event3-photo-10.webp" data-caption="Meet Student Slovenia 2023"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event3-photo-10.webp" alt="Meet Student Slovenia 2023, photo 10"></button>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="article-footer">
|
||||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img loading="lazy" decoding="async" src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<img width="1083" height="1083" 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>
|
||||
|
|
@ -364,10 +359,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -441,5 +436,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -231,7 +231,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/event4-img-1.webp" alt="A group of students at the 'Meet Student Slovenia 2024' event">
|
||||
<img width="1920" height="1280" 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">
|
||||
|
|
@ -241,12 +241,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 loading="lazy" decoding="async" src="../../../images/event4-img-2.webp" alt="Panel discussion with speakers">
|
||||
<img width="1920" height="1280" 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 loading="lazy" decoding="async" src="../../../images/event4-img-3.webp" alt="Marija Koštrevska and Sofija Matovska sharing their student experiences in Slovenia.">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
||||
|
|
@ -254,11 +254,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 loading="lazy" decoding="async" src="../../../images/event4-img-4.webp" alt="Event host, coordinator, presenter, and representatives of the Embassy and partners.">
|
||||
<img width="1920" height="1280" 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 loading="lazy" decoding="async" src="../../../images/event4-img-5.webp" alt="Beautiful moments captured by the photographer.">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
||||
|
|
@ -266,12 +266,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 loading="lazy" decoding="async" src="../../../images/event4-img-6.webp" alt="Newly printed MSOS stickers">
|
||||
<img width="1920" height="1280" 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 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">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
||||
|
|
@ -279,7 +279,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 loading="lazy" decoding="async" src="../../../images/event4-img-8.webp" alt="Welcome speech by H.E. Ambassador Mr. Gregor Presker.">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
||||
|
|
@ -287,7 +287,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 loading="lazy" decoding="async" src="../../../images/event4-img-9.webp" alt="Attendees asking questions to the panelists">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
||||
|
|
@ -295,11 +295,11 @@
|
|||
<p>We know that not everyone managed to attend the NLB Gallery, but we therefore provided a high-quality livestream. The event was broadcast live and is now available for re-watching. If you want to feel the atmosphere and hear the honest stories from the panel, you can watch the entire event here 👇</p>
|
||||
|
||||
<div class="video-responsive">
|
||||
<iframe src="https://www.youtube.com/embed/DJD02mQIE98" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
<iframe src="https://www.youtube-nocookie.com/embed/DJD02mQIE98" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
</div>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/event4-img-10.webp" alt="Poster for the 'Meet Student Slovenia' event">
|
||||
<img width="1920" height="1005" 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>
|
||||
|
||||
|
|
@ -309,11 +309,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 loading="lazy" decoding="async" src="../../../images/event4-img-11.webp" alt="The team behind the event.">
|
||||
<img width="1920" height="1280" 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 loading="lazy" decoding="async" src="../../../images/event4-img-12.webp" alt="Team dinner after the event.">
|
||||
<img width="1200" height="1600" 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>
|
||||
|
||||
|
|
@ -322,18 +322,18 @@
|
|||
<section class="event-gallery">
|
||||
<h2 class="event-gallery-title">Photos from the event</h2>
|
||||
<div class="event-gallery-grid js-lightbox">
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-img-1.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024 — photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-img-2.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-2.webp" alt="Meet Student Slovenia 2024 — photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-img-3.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-3.webp" alt="Meet Student Slovenia 2024 — photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-img-4.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-4.webp" alt="Meet Student Slovenia 2024 — photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-img-5.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-5.webp" alt="Meet Student Slovenia 2024 — photo 5"><span class="eg-more">+7</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-6.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-6.webp" alt="Meet Student Slovenia 2024 — photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-7.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-7.webp" alt="Meet Student Slovenia 2024 — photo 7"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-8.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-8.webp" alt="Meet Student Slovenia 2024 — photo 8"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-9.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-9.webp" alt="Meet Student Slovenia 2024 — photo 9"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-10.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-10.webp" alt="Meet Student Slovenia 2024 — photo 10"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-11.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-11.webp" alt="Meet Student Slovenia 2024 — photo 11"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-12.webp" data-caption="Meet Student Slovenia 2024"><img loading="lazy" decoding="async" src="../../../images/event4-img-12.webp" alt="Meet Student Slovenia 2024 — photo 12"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-img-1.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024, photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-img-2.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-img-2.webp" alt="Meet Student Slovenia 2024, photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-img-3.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-img-3.webp" alt="Meet Student Slovenia 2024, photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-img-4.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-img-4.webp" alt="Meet Student Slovenia 2024, photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-img-5.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-img-5.webp" alt="Meet Student Slovenia 2024, photo 5"><span class="eg-more">+7</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-6.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-img-6.webp" alt="Meet Student Slovenia 2024, photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-7.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-img-7.webp" alt="Meet Student Slovenia 2024, photo 7"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-8.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-img-8.webp" alt="Meet Student Slovenia 2024, photo 8"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-9.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-img-9.webp" alt="Meet Student Slovenia 2024, photo 9"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-10.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1005" loading="lazy" decoding="async" src="../../../images/event4-img-10.webp" alt="Meet Student Slovenia 2024, photo 10"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-11.webp" data-caption="Meet Student Slovenia 2024"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-img-11.webp" alt="Meet Student Slovenia 2024, photo 11"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-img-12.webp" data-caption="Meet Student Slovenia 2024"><img width="1200" height="1600" loading="lazy" decoding="async" src="../../../images/event4-img-12.webp" alt="Meet Student Slovenia 2024, photo 12"></button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
@ -341,7 +341,7 @@
|
|||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img loading="lazy" decoding="async" src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<img width="1083" height="1083" 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>
|
||||
|
|
@ -362,10 +362,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -439,5 +439,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file using the correct relative path -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -229,7 +229,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/event4-image1.webp" alt="Students enjoying coffee and burek in front of CTK library.">
|
||||
<img width="1920" height="1280" fetchpriority="high" src="../../../images/event4-image1.webp" alt="Students enjoying coffee and burek in front of CTK library.">
|
||||
</figure>
|
||||
|
||||
<div class="article-body">
|
||||
|
|
@ -239,19 +239,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 loading="lazy" decoding="async" src="../../../images/event4-image2.webp" alt="Students lining up in front of the CTK library building.">
|
||||
<img width="1425" height="950" 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 loading="lazy" decoding="async" src="../../../images/event4-image3.webp" alt="A student smiling while eating a piece of burek.">
|
||||
<img width="1920" height="1280" 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 loading="lazy" decoding="async" src="../../../images/event4-image4.webp" alt="A group of students with hot coffee posing for the camera.">
|
||||
<img width="1920" height="1280" 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>
|
||||
|
||||
|
|
@ -260,7 +260,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 loading="lazy" decoding="async" src="../../../images/event4-image5.webp" alt="A white board with handwritten student answers about their feelings during the exam period.">
|
||||
<img width="1317" height="877" 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>
|
||||
|
||||
|
|
@ -271,14 +271,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 loading="lazy" decoding="async" src="../../../images/event4-image6.webp" alt="Students gathered at the joint stand during the event.">
|
||||
<img width="1920" height="1280" 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 loading="lazy" decoding="async" src="../../../images/event4-image7.webp" alt="A collage of photos showing students, coffee cups, and burek.">
|
||||
<img width="1920" height="1080" 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>
|
||||
|
|
@ -287,20 +287,20 @@
|
|||
<section class="event-gallery">
|
||||
<h2 class="event-gallery-title">Photos from the event</h2>
|
||||
<div class="event-gallery-grid js-lightbox">
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-image1.webp" data-caption="Morning Coffee in front of CTK"><img loading="lazy" decoding="async" src="../../../images/event4-image1.webp" alt="Morning Coffee in front of CTK — photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-image2.webp" data-caption="Morning Coffee in front of CTK"><img loading="lazy" decoding="async" src="../../../images/event4-image2.webp" alt="Morning Coffee in front of CTK — photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-image3.webp" data-caption="Morning Coffee in front of CTK"><img loading="lazy" decoding="async" src="../../../images/event4-image3.webp" alt="Morning Coffee in front of CTK — photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-image4.webp" data-caption="Morning Coffee in front of CTK"><img loading="lazy" decoding="async" src="../../../images/event4-image4.webp" alt="Morning Coffee in front of CTK — photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-image5.webp" data-caption="Morning Coffee in front of CTK"><img loading="lazy" decoding="async" src="../../../images/event4-image5.webp" alt="Morning Coffee in front of CTK — photo 5"><span class="eg-more">+2</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-image6.webp" data-caption="Morning Coffee in front of CTK"><img loading="lazy" decoding="async" src="../../../images/event4-image6.webp" alt="Morning Coffee in front of CTK — photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-image7.webp" data-caption="Morning Coffee in front of CTK"><img loading="lazy" decoding="async" src="../../../images/event4-image7.webp" alt="Morning Coffee in front of CTK — photo 7"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-image1.webp" data-caption="Morning Coffee in front of CTK"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-image1.webp" alt="Morning Coffee in front of CTK, photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-image2.webp" data-caption="Morning Coffee in front of CTK"><img width="1425" height="950" loading="lazy" decoding="async" src="../../../images/event4-image2.webp" alt="Morning Coffee in front of CTK, photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-image3.webp" data-caption="Morning Coffee in front of CTK"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-image3.webp" alt="Morning Coffee in front of CTK, photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-image4.webp" data-caption="Morning Coffee in front of CTK"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-image4.webp" alt="Morning Coffee in front of CTK, photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/event4-image5.webp" data-caption="Morning Coffee in front of CTK"><img width="1317" height="877" loading="lazy" decoding="async" src="../../../images/event4-image5.webp" alt="Morning Coffee in front of CTK, photo 5"><span class="eg-more">+2</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-image6.webp" data-caption="Morning Coffee in front of CTK"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../../images/event4-image6.webp" alt="Morning Coffee in front of CTK, photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/event4-image7.webp" data-caption="Morning Coffee in front of CTK"><img width="1920" height="1080" loading="lazy" decoding="async" src="../../../images/event4-image7.webp" alt="Morning Coffee in front of CTK, photo 7"></button>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="article-footer">
|
||||
<hr>
|
||||
<div class="author-share-section">
|
||||
<div class="author-details">
|
||||
<img loading="lazy" decoding="async" src="../../../images/about_kristijan_min.webp" alt="Avatar of Kristijan Popovski">
|
||||
<img width="1083" height="1083" 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>
|
||||
|
|
@ -321,10 +321,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -398,5 +398,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -201,14 +201,14 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/paint-wine-1.webp" alt="Paint & Wine at Sunset event in Gorizia">
|
||||
<img width="1600" height="1067" 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 loading="lazy" decoding="async" src="../../../images/paint-wine-2.webp" alt="Students painting during the Paint & Wine evening">
|
||||
<img width="720" height="480" 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>
|
||||
|
|
@ -216,7 +216,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 loading="lazy" decoding="async" src="../../../images/paint-wine-3.webp" alt="The cozy venue Etnoteca Mama Angela">
|
||||
<img width="1600" height="1067" loading="lazy" decoding="async" src="../../../images/paint-wine-3.webp" alt="The cozy venue Etnoteca Mama Angela">
|
||||
</figure>
|
||||
|
||||
<h2>Art, music, and togetherness</h2>
|
||||
|
|
@ -226,11 +226,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 loading="lazy" decoding="async" src="../../../images/paint-wine-4.webp" alt="Canvases filling with color as students paint">
|
||||
<img width="720" height="480" 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 loading="lazy" decoding="async" src="../../../images/paint-wine-5.webp" alt="Students enjoying wine and music together">
|
||||
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-5.webp" alt="Students enjoying wine and music together">
|
||||
</figure>
|
||||
|
||||
<h2>Why it mattered</h2>
|
||||
|
|
@ -240,15 +240,15 @@
|
|||
<p>To capture the spirit of the night, we created an aftermovie, which you can watch below.</p>
|
||||
|
||||
<div class="video-responsive">
|
||||
<iframe src="https://www.youtube.com/embed/xGN3-6hnfE4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
<iframe src="https://www.youtube-nocookie.com/embed/xGN3-6hnfE4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
</div>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/paint-wine-6.webp" alt="Finished paintings on display">
|
||||
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-6.webp" alt="Finished paintings on display">
|
||||
</figure>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/paint-wine-7.webp" alt="The group enjoying the celebration">
|
||||
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-7.webp" alt="The group enjoying the celebration">
|
||||
</figure>
|
||||
|
||||
<h2>Looking ahead</h2>
|
||||
|
|
@ -256,26 +256,26 @@
|
|||
<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 loading="lazy" decoding="async" src="../../../images/paint-wine-8.webp" alt="A memory from the Paint & Wine evening">
|
||||
<img width="720" height="480" 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 loading="lazy" decoding="async" src="../../../images/paint-wine-9.webp" alt="The MSOS Nova Gorica community at sunset">
|
||||
<img width="1600" height="1067" loading="lazy" decoding="async" src="../../../images/paint-wine-9.webp" alt="The MSOS Nova Gorica community at sunset">
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<section class="event-gallery">
|
||||
<h2 class="event-gallery-title">Photos from the event</h2>
|
||||
<div class="event-gallery-grid js-lightbox">
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/paint-wine-1.webp" data-caption="Paint & Wine at Sunset"><img loading="lazy" decoding="async" src="../../../images/paint-wine-1.webp" alt="Paint & Wine at Sunset — photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/paint-wine-2.webp" data-caption="Paint & Wine at Sunset"><img loading="lazy" decoding="async" src="../../../images/paint-wine-2.webp" alt="Paint & Wine at Sunset — photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/paint-wine-3.webp" data-caption="Paint & Wine at Sunset"><img loading="lazy" decoding="async" src="../../../images/paint-wine-3.webp" alt="Paint & Wine at Sunset — photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/paint-wine-4.webp" data-caption="Paint & Wine at Sunset"><img loading="lazy" decoding="async" src="../../../images/paint-wine-4.webp" alt="Paint & Wine at Sunset — photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/paint-wine-5.webp" data-caption="Paint & Wine at Sunset"><img loading="lazy" decoding="async" src="../../../images/paint-wine-5.webp" alt="Paint & Wine at Sunset — photo 5"><span class="eg-more">+4</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/paint-wine-6.webp" data-caption="Paint & Wine at Sunset"><img loading="lazy" decoding="async" src="../../../images/paint-wine-6.webp" alt="Paint & Wine at Sunset — photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/paint-wine-7.webp" data-caption="Paint & Wine at Sunset"><img loading="lazy" decoding="async" src="../../../images/paint-wine-7.webp" alt="Paint & Wine at Sunset — photo 7"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/paint-wine-8.webp" data-caption="Paint & Wine at Sunset"><img loading="lazy" decoding="async" src="../../../images/paint-wine-8.webp" alt="Paint & Wine at Sunset — photo 8"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/paint-wine-9.webp" data-caption="Paint & Wine at Sunset"><img loading="lazy" decoding="async" src="../../../images/paint-wine-9.webp" alt="Paint & Wine at Sunset — photo 9"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/paint-wine-1.webp" data-caption="Paint & Wine at Sunset"><img width="1600" height="1067" loading="lazy" decoding="async" src="../../../images/paint-wine-1.webp" alt="Paint & Wine at Sunset, photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/paint-wine-2.webp" data-caption="Paint & Wine at Sunset"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-2.webp" alt="Paint & Wine at Sunset, photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/paint-wine-3.webp" data-caption="Paint & Wine at Sunset"><img width="1600" height="1067" loading="lazy" decoding="async" src="../../../images/paint-wine-3.webp" alt="Paint & Wine at Sunset, photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/paint-wine-4.webp" data-caption="Paint & Wine at Sunset"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-4.webp" alt="Paint & Wine at Sunset, photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/paint-wine-5.webp" data-caption="Paint & Wine at Sunset"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-5.webp" alt="Paint & Wine at Sunset, photo 5"><span class="eg-more">+4</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/paint-wine-6.webp" data-caption="Paint & Wine at Sunset"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-6.webp" alt="Paint & Wine at Sunset, photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/paint-wine-7.webp" data-caption="Paint & Wine at Sunset"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-7.webp" alt="Paint & Wine at Sunset, photo 7"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/paint-wine-8.webp" data-caption="Paint & Wine at Sunset"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-8.webp" alt="Paint & Wine at Sunset, photo 8"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/paint-wine-9.webp" data-caption="Paint & Wine at Sunset"><img width="1600" height="1067" loading="lazy" decoding="async" src="../../../images/paint-wine-9.webp" alt="Paint & Wine at Sunset, photo 9"></button>
|
||||
</div>
|
||||
</section>
|
||||
</article>
|
||||
|
|
@ -283,10 +283,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -360,5 +360,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -201,14 +201,14 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/handball-2025-1.webp" alt="Fan atmosphere while watching handball in Maribor">
|
||||
<img width="720" height="480" 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 loading="lazy" decoding="async" src="../../../images/handball-2025-2.webp" alt="A snapshot of the fan atmosphere in Maribor.">
|
||||
<img width="720" height="480" 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>
|
||||
|
||||
|
|
@ -217,14 +217,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 loading="lazy" decoding="async" src="../../../images/handball-2025-3.webp" alt="Fans gathered at the Ljubljana base to cheer for Macedonia together.">
|
||||
<img width="720" height="480" 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 loading="lazy" decoding="async" src="../../../images/handball-2025-4.webp" alt="Fans gathered at the Maribor base to cheer for Macedonia together.">
|
||||
<img width="720" height="480" 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>
|
||||
|
||||
|
|
@ -233,7 +233,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 loading="lazy" decoding="async" src="../../../images/handball-2025-5.webp" alt="Two of our MSOS Maribor organizers enjoying the evening at the fan event.">
|
||||
<img width="720" height="480" 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>
|
||||
|
||||
|
|
@ -242,12 +242,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 loading="lazy" decoding="async" src="../../../images/handball-2025-6.webp" alt="A snapshot of our team in Maribor.">
|
||||
<img width="720" height="480" 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 loading="lazy" decoding="async" src="../../../images/handball-2025-7.webp" alt="A snapshot of our team in Ljubljana.">
|
||||
<img width="720" height="480" 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>
|
||||
|
|
@ -255,13 +255,13 @@
|
|||
<section class="event-gallery">
|
||||
<h2 class="event-gallery-title">Photos from the event</h2>
|
||||
<div class="event-gallery-grid js-lightbox">
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/handball-2025-1.webp" data-caption="Watching Handball Together in Slovenia"><img loading="lazy" decoding="async" src="../../../images/handball-2025-1.webp" alt="Watching Handball Together in Slovenia — photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/handball-2025-2.webp" data-caption="Watching Handball Together in Slovenia"><img loading="lazy" decoding="async" src="../../../images/handball-2025-2.webp" alt="Watching Handball Together in Slovenia — photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/handball-2025-3.webp" data-caption="Watching Handball Together in Slovenia"><img loading="lazy" decoding="async" src="../../../images/handball-2025-3.webp" alt="Watching Handball Together in Slovenia — photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/handball-2025-4.webp" data-caption="Watching Handball Together in Slovenia"><img loading="lazy" decoding="async" src="../../../images/handball-2025-4.webp" alt="Watching Handball Together in Slovenia — photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/handball-2025-5.webp" data-caption="Watching Handball Together in Slovenia"><img loading="lazy" decoding="async" src="../../../images/handball-2025-5.webp" alt="Watching Handball Together in Slovenia — photo 5"><span class="eg-more">+2</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/handball-2025-6.webp" data-caption="Watching Handball Together in Slovenia"><img loading="lazy" decoding="async" src="../../../images/handball-2025-6.webp" alt="Watching Handball Together in Slovenia — photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/handball-2025-7.webp" data-caption="Watching Handball Together in Slovenia"><img loading="lazy" decoding="async" src="../../../images/handball-2025-7.webp" alt="Watching Handball Together in Slovenia — photo 7"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/handball-2025-1.webp" data-caption="Watching Handball Together in Slovenia"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/handball-2025-1.webp" alt="Watching Handball Together in Slovenia, photo 1"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/handball-2025-2.webp" data-caption="Watching Handball Together in Slovenia"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/handball-2025-2.webp" alt="Watching Handball Together in Slovenia, photo 2"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/handball-2025-3.webp" data-caption="Watching Handball Together in Slovenia"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/handball-2025-3.webp" alt="Watching Handball Together in Slovenia, photo 3"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/handball-2025-4.webp" data-caption="Watching Handball Together in Slovenia"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/handball-2025-4.webp" alt="Watching Handball Together in Slovenia, photo 4"></button>
|
||||
<button type="button" class="eg-thumb" data-full="../../../images/handball-2025-5.webp" data-caption="Watching Handball Together in Slovenia"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/handball-2025-5.webp" alt="Watching Handball Together in Slovenia, photo 5"><span class="eg-more">+2</span></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/handball-2025-6.webp" data-caption="Watching Handball Together in Slovenia"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/handball-2025-6.webp" alt="Watching Handball Together in Slovenia, photo 6"></button>
|
||||
<button type="button" class="eg-thumb is-hidden" data-full="../../../images/handball-2025-7.webp" data-caption="Watching Handball Together in Slovenia"><img width="720" height="480" loading="lazy" decoding="async" src="../../../images/handball-2025-7.webp" alt="Watching Handball Together in Slovenia, photo 7"></button>
|
||||
</div>
|
||||
</section>
|
||||
</article>
|
||||
|
|
@ -269,10 +269,10 @@
|
|||
<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>
|
||||
<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">
|
||||
<input type="email" placeholder="Enter your email" aria-label="Email address">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
|
||||
</form>
|
||||
|
|
@ -346,5 +346,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -358,5 +358,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -355,5 +355,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -356,5 +356,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -353,5 +353,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -371,5 +371,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -383,5 +383,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -374,5 +374,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -399,5 +399,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -348,5 +348,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -366,5 +366,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -409,5 +409,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -513,5 +513,7 @@
|
|||
<script src="../../main.js"></script>
|
||||
<script src="../../student-guide.js"></script>
|
||||
<script src="../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -360,5 +360,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -432,5 +432,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
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.">
|
||||
<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/">
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
<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: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">
|
||||
|
|
@ -39,10 +39,10 @@
|
|||
<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: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":"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">
|
||||
|
|
@ -56,12 +56,13 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="sr-only">Your personal study route</h1>
|
||||
|
||||
<!-- START_HEADER -->
|
||||
<header class="dropdown-header-navigation">
|
||||
|
|
@ -260,5 +261,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../my-route.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -387,5 +387,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -404,5 +404,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -349,5 +349,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -358,5 +358,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -398,5 +398,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -398,5 +398,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -368,5 +368,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -356,5 +356,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -393,5 +393,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -410,5 +410,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -377,5 +377,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -351,5 +351,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -383,5 +383,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -353,5 +353,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -380,5 +380,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -347,5 +347,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Correct path to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -418,5 +418,7 @@
|
|||
|
||||
<script src="../../../main.js"></script>
|
||||
<script src="../../../guide-feedback.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Support MSOS - Macedonian Student Organisation in Slovenia</title>
|
||||
<meta name="description" content="Support the Macedonian Student Organisation in Slovenia (MSOS) through a donation or partnership and help fund student events, guidance and community programs.">
|
||||
<!-- 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>
|
||||
|
|
@ -51,7 +52,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -206,12 +207,12 @@
|
|||
<div class="sup-story-grid">
|
||||
<div class="sup-story-text">
|
||||
<h2 class="sup-h2">Built by the community, for the community</h2>
|
||||
<p>We are a non-profit, volunteer-run organisation. No one at MSOS is paid — our team gives their time because they remember how it feels to arrive in a new country, far from home, trying to find their place.</p>
|
||||
<p>We are a non-profit, volunteer-run organisation. No one at MSOS is paid, our team gives their time because they remember how it feels to arrive in a new country, far from home, trying to find their place.</p>
|
||||
<p>From the first Macedonian student party in Ljubljana to a nationwide network across Ljubljana, Maribor, Koper and Nova Gorica, none of it would have been possible without the generosity of our partners, sponsors and community. They gave us venues, funding, guidance and trust when we were just starting out.</p>
|
||||
<p>Your support keeps this going — and helps the next generation of students feel a little less alone.</p>
|
||||
<p>Your support keeps this going, and helps the next generation of students feel a little less alone.</p>
|
||||
</div>
|
||||
<div class="sup-story-media">
|
||||
<img src="../../images/amazing_team.webp" alt="The MSOS volunteer team together at an event" loading="lazy" decoding="async">
|
||||
<img width="1920" height="1280" src="../../images/amazing_team.webp" alt="The MSOS volunteer team together at an event" loading="lazy" decoding="async">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -239,7 +240,7 @@
|
|||
<div class="sup-way">
|
||||
<div class="sup-way-ico"><i class="fas fa-lightbulb" aria-hidden="true"></i></div>
|
||||
<h3>Offer skills or space</h3>
|
||||
<p>Can you offer a venue, mentorship, design, photography, legal or other expertise? In-kind support is just as valuable as funding — tell us what you can share.</p>
|
||||
<p>Can you offer a venue, mentorship, design, photography, legal or other expertise? In-kind support is just as valuable as funding, tell us what you can share.</p>
|
||||
<a href="mailto:info@msosorg.com?subject=I%20want%20to%20help%20MSOS">Tell us how you can help <i class="fas fa-arrow-right" aria-hidden="true"></i></a>
|
||||
</div>
|
||||
<div class="sup-way">
|
||||
|
|
@ -277,7 +278,7 @@
|
|||
<i class="fas fa-circle-check" aria-hidden="true"></i>
|
||||
<div>
|
||||
<h4>Support when it matters most</h4>
|
||||
<p>Standing with our community in hard times — like the humanitarian actions for Kočani.</p>
|
||||
<p>Standing with our community in hard times, like the humanitarian actions for Kočani.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sup-impact-item">
|
||||
|
|
@ -307,7 +308,7 @@
|
|||
<div class="sup-bank-row"><span class="k">Bank</span><span class="v">NLB d.d., Ljubljana</span></div>
|
||||
<div class="sup-bank-row"><span class="k">IBAN</span><span class="v">SI56 0284 3026 6115 703</span></div>
|
||||
<div class="sup-bank-row"><span class="k">SWIFT / BIC</span><span class="v">LJBASI2X</span></div>
|
||||
<div class="sup-bank-row"><span class="k">Reference</span><span class="v">Donation – your name</span></div>
|
||||
<div class="sup-bank-row"><span class="k">Reference</span><span class="v">Donation, your name</span></div>
|
||||
</div>
|
||||
<p class="sup-bank-note">MSOS is a registered non-profit association in Slovenia. If you would like a confirmation of your donation or a sponsorship agreement, email us at <a href="mailto:info@msosorg.com">info@msosorg.com</a> and we will be happy to help.</p>
|
||||
</div>
|
||||
|
|
@ -319,27 +320,27 @@
|
|||
<div class="marquee" aria-label="Our partners and supporters">
|
||||
<div class="marquee-track">
|
||||
<div class="marquee-group">
|
||||
<img src="../../images/partners/ambasada-slo.png" alt="Embassy of the Republic of Slovenia in Skopje" loading="lazy">
|
||||
<img src="../../images/partners/nlb.png" alt="NLB Banka" loading="lazy">
|
||||
<img src="../../images/partners/ctk.png" alt="Central Technological Library (CTK), University of Ljubljana" loading="lazy">
|
||||
<img src="../../images/partners/dsmp.png" alt="Association of Slovenian and Macedonian Entrepreneurs (DSMP)" loading="lazy">
|
||||
<img src="../../images/partners/kampus.png" alt="Kampus" loading="lazy">
|
||||
<img src="../../images/partners/povezani.png" alt="Povezani" loading="lazy">
|
||||
<img src="../../images/partners/mzzt-mk-wide.png" alt="Ministry of Foreign Affairs and Trade of North Macedonia" loading="lazy">
|
||||
<img src="../../images/partners/kdm-makedonija.png" alt="Macedonian Cultural Association Macedonia in Ljubljana" loading="lazy">
|
||||
<img src="../../images/partners/ambasada-mkd.png" alt="Embassy of the Republic of North Macedonia in Slovenia" loading="lazy"> <img src="../../images/partners/mojster.png" alt="Spletni Mojster" loading="lazy">
|
||||
<img width="499" height="98" src="../../images/partners/ambasada-slo.png" alt="Embassy of the Republic of Slovenia in Skopje" loading="lazy">
|
||||
<img width="469" height="107" src="../../images/partners/nlb.png" alt="NLB Banka" loading="lazy">
|
||||
<img width="800" height="287" src="../../images/partners/ctk.png" alt="Central Technological Library (CTK), University of Ljubljana" loading="lazy">
|
||||
<img width="411" height="149" src="../../images/partners/dsmp.png" alt="Association of Slovenian and Macedonian Entrepreneurs (DSMP)" loading="lazy">
|
||||
<img width="501" height="156" src="../../images/partners/kampus.png" alt="Kampus" loading="lazy">
|
||||
<img width="327" height="155" src="../../images/partners/povezani.png" alt="Povezani" loading="lazy">
|
||||
<img width="816" height="202" src="../../images/partners/mzzt-mk-wide.png" alt="Ministry of Foreign Affairs and Trade of North Macedonia" loading="lazy">
|
||||
<img width="400" height="403" src="../../images/partners/kdm-makedonija.png" alt="Macedonian Cultural Association Macedonia in Ljubljana" loading="lazy">
|
||||
<img width="917" height="206" src="../../images/partners/ambasada-mkd.png" alt="Embassy of the Republic of North Macedonia in Slovenia" loading="lazy"> <img width="534" height="35" src="../../images/partners/mojster.png" alt="Spletni Mojster" loading="lazy">
|
||||
|
||||
</div>
|
||||
<div class="marquee-group" aria-hidden="true">
|
||||
<img src="../../images/partners/ambasada-slo.png" alt="" loading="lazy">
|
||||
<img src="../../images/partners/nlb.png" alt="" loading="lazy">
|
||||
<img src="../../images/partners/ctk.png" alt="" loading="lazy">
|
||||
<img src="../../images/partners/dsmp.png" alt="" loading="lazy">
|
||||
<img src="../../images/partners/kampus.png" alt="" loading="lazy">
|
||||
<img src="../../images/partners/povezani.png" alt="" loading="lazy">
|
||||
<img src="../../images/partners/mzzt-mk-wide.png" alt="" loading="lazy">
|
||||
<img src="../../images/partners/kdm-makedonija.png" alt="" loading="lazy">
|
||||
<img src="../../images/partners/ambasada-mkd.png" alt="" loading="lazy"> <img src="../../images/partners/mojster.png" alt="" loading="lazy">
|
||||
<img width="499" height="98" src="../../images/partners/ambasada-slo.png" alt="" loading="lazy">
|
||||
<img width="469" height="107" src="../../images/partners/nlb.png" alt="" loading="lazy">
|
||||
<img width="800" height="287" src="../../images/partners/ctk.png" alt="" loading="lazy">
|
||||
<img width="411" height="149" src="../../images/partners/dsmp.png" alt="" loading="lazy">
|
||||
<img width="501" height="156" src="../../images/partners/kampus.png" alt="" loading="lazy">
|
||||
<img width="327" height="155" src="../../images/partners/povezani.png" alt="" loading="lazy">
|
||||
<img width="816" height="202" src="../../images/partners/mzzt-mk-wide.png" alt="" loading="lazy">
|
||||
<img width="400" height="403" src="../../images/partners/kdm-makedonija.png" alt="" loading="lazy">
|
||||
<img width="917" height="206" src="../../images/partners/ambasada-mkd.png" alt="" loading="lazy"> <img width="534" height="35" src="../../images/partners/mojster.png" alt="" loading="lazy">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -422,5 +423,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -54,10 +54,10 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -202,7 +202,7 @@
|
|||
|
||||
<!-- Timeline Banner -->
|
||||
<div class="timeline-banner">
|
||||
<img fetchpriority="high" src="../../../images/about_us-timeline-milestones_img0.webp" alt="MSOS Team Group Photo">
|
||||
<img width="1920" height="1280" fetchpriority="high" src="../../images/about_us-timeline-milestones_img0.webp" alt="MSOS Team Group Photo">
|
||||
</div>
|
||||
|
||||
<!-- Timeline Section -->
|
||||
|
|
@ -503,5 +503,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
27
main.js
27
main.js
|
|
@ -14,21 +14,42 @@ document.addEventListener('DOMContentLoaded', function() {
|
|||
if (!icon) {
|
||||
console.error('Mobile menu icon not found.');
|
||||
} else {
|
||||
// Accessibility: the icon is a <div>, so expose it to keyboard and
|
||||
// screen-reader users as a button (focusable, labelled, toggle state).
|
||||
if (!icon.hasAttribute('role')) icon.setAttribute('role', 'button');
|
||||
if (!icon.hasAttribute('tabindex')) icon.setAttribute('tabindex', '0');
|
||||
if (!icon.hasAttribute('aria-label')) icon.setAttribute('aria-label', 'Open menu');
|
||||
icon.setAttribute('aria-expanded', 'false');
|
||||
|
||||
const setMenu = (open) => {
|
||||
root.classList.toggle('nav-open', open);
|
||||
icon.setAttribute('aria-expanded', open ? 'true' : 'false');
|
||||
icon.setAttribute('aria-label', open ? 'Close menu' : 'Open menu');
|
||||
};
|
||||
|
||||
icon.addEventListener('click', (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
root.classList.toggle('nav-open');
|
||||
setMenu(!root.classList.contains('nav-open'));
|
||||
});
|
||||
|
||||
// Activate with Enter / Space like a native button.
|
||||
icon.addEventListener('keydown', (e) => {
|
||||
if (e.key === 'Enter' || e.key === ' ' || e.key === 'Spacebar') {
|
||||
e.preventDefault();
|
||||
setMenu(!root.classList.contains('nav-open'));
|
||||
}
|
||||
});
|
||||
|
||||
document.addEventListener('click', (e) => {
|
||||
if (root.classList.contains('nav-open') && !e.target.closest('.mobile-nav-panel') && !e.target.closest('.mobile-menu-icon')) {
|
||||
root.classList.remove('nav-open');
|
||||
setMenu(false);
|
||||
}
|
||||
});
|
||||
|
||||
document.addEventListener('keydown', (e) => {
|
||||
if (e.key === 'Escape') {
|
||||
root.classList.remove('nav-open');
|
||||
setMenu(false);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Link to the main CSS file -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -211,8 +211,8 @@
|
|||
<div class="member-content">
|
||||
<div class="member-socials">
|
||||
<a href="mailto:kristijan.popovski@msosorg.com" aria-label="Испрати е-пошта до Kristijan Popovski"><i class="fas fa-envelope"></i></a>
|
||||
<a href="https://www.linkedin.com/in/popovski-k" target="_blank" aria-label="LinkedIn профил на Kristijan Popovski"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/popovski.k/" target="_blank" aria-label="Instagram профил на Kristijan Popovski"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/in/popovski-k" target="_blank" rel="noopener" aria-label="LinkedIn профил на Kristijan Popovski"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/popovski.k/" target="_blank" rel="noopener" aria-label="Instagram профил на Kristijan Popovski"><i class="fab fa-instagram"></i></a>
|
||||
</div>
|
||||
<div class="member-info">
|
||||
<h4>Kristijan Popovski</h4>
|
||||
|
|
@ -225,8 +225,8 @@
|
|||
<div class="member-content">
|
||||
<div class="member-socials">
|
||||
<a href="mailto:lea.janackovska@msosorg.com" aria-label="Испрати е-пошта до Lea Janachkovska"><i class="fas fa-envelope"></i></a>
|
||||
<a href="https://www.linkedin.com/in/lea-janachkovska-9833b9246/" target="_blank" aria-label="LinkedIn профил на Lea Janachkovska"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/lea_janackovska" target="_blank" aria-label="Instagram профил на Lea Janachkovska"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/in/lea-janachkovska-9833b9246/" target="_blank" rel="noopener" aria-label="LinkedIn профил на Lea Janachkovska"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/lea_janackovska" target="_blank" rel="noopener" aria-label="Instagram профил на Lea Janachkovska"><i class="fab fa-instagram"></i></a>
|
||||
</div>
|
||||
<div class="member-info">
|
||||
<h4>Lea Janachkovska</h4>
|
||||
|
|
@ -239,8 +239,8 @@
|
|||
<div class="member-content">
|
||||
<div class="member-socials">
|
||||
<a href="mailto:marko.arsov@msosorg.com" aria-label="Испрати е-пошта до Marko Arsov"><i class="fas fa-envelope"></i></a>
|
||||
<a href="https://www.linkedin.com/in/marko-arsov-3313202b9" target="_blank" aria-label="LinkedIn профил на Marko Arsov"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/marko.arsov" target="_blank" aria-label="Instagram профил на Marko Arsov"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/in/marko-arsov-3313202b9" target="_blank" rel="noopener" aria-label="LinkedIn профил на Marko Arsov"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/marko.arsov" target="_blank" rel="noopener" aria-label="Instagram профил на Marko Arsov"><i class="fab fa-instagram"></i></a>
|
||||
</div>
|
||||
<div class="member-info">
|
||||
<h4>Marko Arsov</h4>
|
||||
|
|
@ -253,8 +253,8 @@
|
|||
<div class="member-content">
|
||||
<div class="member-socials">
|
||||
<a href="mailto:marija.koshtrevska@msosorg.com" aria-label="Испрати е-пошта до Marija Koshtrevska"><i class="fas fa-envelope"></i></a>
|
||||
<a href="https://www.linkedin.com/in/marija-koshtrevska/" target="_blank" aria-label="LinkedIn профил на Marija Koshtrevska"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/koshtrevska_10" target="_blank" aria-label="Instagram профил на Marija Koshtrevska"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/in/marija-koshtrevska/" target="_blank" rel="noopener" aria-label="LinkedIn профил на Marija Koshtrevska"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/koshtrevska_10" target="_blank" rel="noopener" aria-label="Instagram профил на Marija Koshtrevska"><i class="fab fa-instagram"></i></a>
|
||||
</div>
|
||||
<div class="member-info">
|
||||
<h4>Marija Koshtrevska</h4>
|
||||
|
|
@ -267,8 +267,8 @@
|
|||
<div class="member-content">
|
||||
<div class="member-socials">
|
||||
<a href="mailto:monika.velinova@msosorg.com" aria-label="Испрати е-пошта до Monika Velinova"><i class="fas fa-envelope"></i></a>
|
||||
<a href="https://www.linkedin.com/in/monika-velinova-21632517a/" target="_blank" aria-label="LinkedIn профил на Monika Velinova"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/monivelinova" target="_blank" aria-label="Instagram профил на Monika Velinova"><i class="fab fa-instagram"></i></a>
|
||||
<a href="https://www.linkedin.com/in/monika-velinova-21632517a/" target="_blank" rel="noopener" aria-label="LinkedIn профил на Monika Velinova"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="https://www.instagram.com/monivelinova" target="_blank" rel="noopener" aria-label="Instagram профил на Monika Velinova"><i class="fab fa-instagram"></i></a>
|
||||
</div>
|
||||
<div class="member-info">
|
||||
<h4>Monika Velinova</h4>
|
||||
|
|
@ -292,12 +292,12 @@
|
|||
<p>Силата на МСОС доаѓа од несебичното давање на нашето време и енергија. Секој проект, настан и идеја во МСОС е изградена врз напорната работа на нашите неверојатни волонтери. Нашиот волонтерски дух е доказ за посветеноста, страста и заедничката енергија на нашата заедница и причината зошто заедно стануваме посилни.</p>
|
||||
</div>
|
||||
<div class="value-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_volunteer_spirit.webp" alt="Група волонтери работат заедно со позитивна енергија.">
|
||||
<img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/about_volunteer_spirit.webp" alt="Група волонтери работат заедно со позитивна енергија.">
|
||||
</div>
|
||||
</div>
|
||||
<div class="value-row">
|
||||
<div class="value-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_solidarity_and_care_for_each_other.webp" alt="Студенти кои се поддржуваат меѓусебно на пријателски и грижлив начин.">
|
||||
<img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/about_solidarity_and_care_for_each_other.webp" alt="Студенти кои се поддржуваат меѓусебно на пријателски и грижлив начин.">
|
||||
</div>
|
||||
<div class="value-content">
|
||||
<h3>Солидарност и грижа еден за друг</h3>
|
||||
|
|
@ -310,7 +310,7 @@
|
|||
<p>Гордеемe се со тоа од каде доаѓаме и го носиме нашето македонско наследство со нас, додека се стремиме кон посветла иднина. Нашите корени ни даваат сила, а нашата амбиција нè турка напред. Нашата амбиција нè тера да бидеме професионални, иновативни и влијателни лидери и примери за углед во нашата земја домаќин.</p>
|
||||
</div>
|
||||
<div class="value-image">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_love_for_our_roots_ambition_for_the_future.webp" alt="Спој на традиционалната македонска култура и модерните амбициозни студенти.">
|
||||
<img width="1920" height="1281" loading="lazy" decoding="async" src="../../images/about_love_for_our_roots_ambition_for_the_future.webp" alt="Спој на традиционалната македонска култура и модерните амбициозни студенти.">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -328,7 +328,7 @@
|
|||
<p>Мисијата на МСОС е да ги застапува интересите, да го подобрува животот и да го олеснува студирањето на македонските студенти во Република Словенија.</p>
|
||||
</div>
|
||||
<div class="box-content mission-icon-content">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_mission.webp" alt="Икона за мисија">
|
||||
<img width="510" height="200" loading="lazy" decoding="async" src="../../images/about_mission.webp" alt="Икона за мисија">
|
||||
</div>
|
||||
</div>
|
||||
<!-- Vision Box -->
|
||||
|
|
@ -337,7 +337,7 @@
|
|||
<p>Визијата на МСОС е да обезбеди глас, дом и поддршка за македонските студенти во Република Словенија, притоа охрабрувајќи го нивното активно вклучување во проекти од заеднички интерес.</p>
|
||||
</div>
|
||||
<div class="box-content vision-icon-content">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_vision.webp" alt="Икона за визија">
|
||||
<img width="510" height="200" loading="lazy" decoding="async" src="../../images/about_vision.webp" alt="Икона за визија">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -347,9 +347,9 @@
|
|||
<section class="faq-cta-section">
|
||||
<div class="faq-cta-container">
|
||||
<div class="avatar-group">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_marija_min.webp" alt="Аватар на Marija" class="avatar">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_kristijan_min.webp" alt="Аватар на Kristijan" class="avatar large">
|
||||
<img loading="lazy" decoding="async" src="../../images/about_lea_min.webp" alt="Аватар на Lea" class="avatar">
|
||||
<img width="1197" height="1197" loading="lazy" decoding="async" src="../../images/about_marija_min.webp" alt="Аватар на Marija" class="avatar">
|
||||
<img width="1083" height="1083" loading="lazy" decoding="async" src="../../images/about_kristijan_min.webp" alt="Аватар на Kristijan" class="avatar large">
|
||||
<img width="1099" height="1099" loading="lazy" decoding="async" src="../../images/about_lea_min.webp" alt="Аватар на Lea" class="avatar">
|
||||
</div>
|
||||
<h3>Имате какви било прашања?</h3>
|
||||
<p class="page-description" style="margin: 0;">Не можете да го најдете одговорот што го барате? Разговарајте со нашиот пријателски тим.</p>
|
||||
|
|
@ -422,5 +422,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Поврзување до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -202,14 +202,14 @@
|
|||
<a class="btn btn-secondary" href="#showcase">Види што работиме</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="Запознај ја студентска Словенија 2024" loading="eager"></div><div class="mm-hero-photo mm-hero-photo--2"><img src="../../images/msnl-1.webp" alt="Македонска студентска вечер во Љубљана" loading="eager"></div><div class="mm-hero-photo mm-hero-photo--3"><img src="../../images/handball-2025-1.webp" alt="Навивање за Македонија, заедничко гледање ракомет во Словенија" loading="eager"></div></div>
|
||||
<div class="mm-hero-collage"><div class="mm-hero-photo mm-hero-photo--1"><img width="1920" height="1280" src="../../images/event4-img-1.webp" alt="Запознај ја студентска Словенија 2024" loading="eager"></div><div class="mm-hero-photo mm-hero-photo--2"><img width="1430" height="757" src="../../images/msnl-1.webp" alt="Македонска студентска вечер во Љубљана" loading="eager"></div><div class="mm-hero-photo mm-hero-photo--3"><img width="720" height="480" src="../../images/handball-2025-1.webp" alt="Навивање за Македонија, заедничко гледање ракомет во Словенија" loading="eager"></div></div>
|
||||
</section>
|
||||
|
||||
<section class="mm-section">
|
||||
<h2 class="mm-h2">Зошто да станеш член?</h2>
|
||||
<div class="mm-benefits">
|
||||
<figure class="mm-benefit-photo">
|
||||
<img src="../../images/event4-image2.webp" alt="Македонски студенти собрани во Љубљана" loading="lazy">
|
||||
<img width="1425" height="950" src="../../images/event4-image2.webp" alt="Македонски студенти собрани во Љубљана" loading="lazy">
|
||||
<figcaption>Вистински настани, вистински пријателства</figcaption>
|
||||
</figure>
|
||||
<article class="mm-benefit">
|
||||
|
|
@ -241,7 +241,7 @@
|
|||
<h3>Почувствувај се како дома</h3><p>Припаѓај на заедница каде никогаш не мораш да објаснуваш од каде доаѓаш.</p>
|
||||
</article>
|
||||
<figure class="mm-benefit-photo">
|
||||
<img src="../../images/msnl-3.webp" alt="Студенти ги пишуваат своите имиња на кирилица на македонската студентска вечер" loading="lazy">
|
||||
<img width="1087" height="586" src="../../images/msnl-3.webp" alt="Студенти ги пишуваат своите имиња на кирилица на македонската студентска вечер" loading="lazy">
|
||||
<figcaption>Парче дома во Словенија</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
|
|
@ -293,19 +293,19 @@
|
|||
<h2 class="mm-h2">Како всушност изгледа да си дел од МСОС</h2>
|
||||
<div class="mm-reals">
|
||||
<a class="mm-real" href="../projects/meet-student-slovenia-2024/">
|
||||
<div class="mm-real-media"><img src="../../images/event4-img-1.webp" alt="Почни на настан за добредојде" loading="lazy"></div>
|
||||
<div class="mm-real-media"><img width="1920" height="1280" src="../../images/event4-img-1.webp" alt="Почни на настан за добредојде" loading="lazy"></div>
|
||||
<div class="mm-real-body"><h3>Почни на настан за добредојде</h3><p>Запознај ја заедницата уште од првите недели во Словенија.</p><span class="mm-real-link">Прочитај ја приказната <i class="fas fa-arrow-right" aria-hidden="true"></i></span></div>
|
||||
</a>
|
||||
<a class="mm-real" href="../projects/macedonian-student-night-in-ljubljana/">
|
||||
<div class="mm-real-media"><img src="../../images/msnl-1.webp" alt="Уживај на студентска ноќ" loading="lazy"></div>
|
||||
<div class="mm-real-media"><img width="1430" height="757" src="../../images/msnl-1.webp" alt="Уживај на студентска ноќ" loading="lazy"></div>
|
||||
<div class="mm-real-body"><h3>Уживај на студентска ноќ</h3><p>Музика, пријатели и вечер што е како дома.</p><span class="mm-real-link">Прочитај ја приказната <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.webp" alt="Придонесете заедно" loading="lazy"></div>
|
||||
<div class="mm-real-media"><img width="720" height="480" src="../../images/maribor-tournament-1.webp" alt="Придонесете заедно" loading="lazy"></div>
|
||||
<div class="mm-real-body"><h3>Придонесете заедно</h3><p>Учествувај во хуманитарни активности што помагаат на другите.</p><span class="mm-real-link">Прочитај ја приказната <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.webp" alt="Навивајте заедно" loading="lazy"></div>
|
||||
<div class="mm-real-media"><img width="720" height="480" src="../../images/handball-2025-1.webp" alt="Навивајте заедно" loading="lazy"></div>
|
||||
<div class="mm-real-body"><h3>Навивајте заедно</h3><p>Спорт, енергија и припадност, каде и да студираш.</p><span class="mm-real-link">Прочитај ја приказната <i class="fas fa-arrow-right" aria-hidden="true"></i></span></div>
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -333,27 +333,27 @@
|
|||
<h2 class="mm-h2">Види го МСОС во акција</h2>
|
||||
<div class="mm-shows">
|
||||
<a class="mm-show" href="../projects/meet-student-slovenia-2024/">
|
||||
<div class="mm-show-media"><img src="../../images/event4-img-1.webp" alt="Запознај ја студентска Словенија 2024" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="1920" height="1280" src="../../images/event4-img-1.webp" alt="Запознај ја студентска Словенија 2024" loading="lazy"></div>
|
||||
<h3>Запознај ја студентска Словенија 2024</h3>
|
||||
</a>
|
||||
<a class="mm-show" href="../projects/macedonian-student-night-in-ljubljana/">
|
||||
<div class="mm-show-media"><img src="../../images/msnl-1.webp" alt="Македонска студентска вечер во Љубљана" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="1430" height="757" src="../../images/msnl-1.webp" alt="Македонска студентска вечер во Љубљана" loading="lazy"></div>
|
||||
<h3>Македонска студентска вечер во Љубљана</h3>
|
||||
</a>
|
||||
<a class="mm-show" href="../projects/humanitarian-tournament-in-maribor/">
|
||||
<div class="mm-show-media"><img src="../../images/maribor-tournament-1.webp" alt="Хуманитарен спортски турнир: Играме со срце, заедно за Кочани" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="720" height="480" src="../../images/maribor-tournament-1.webp" alt="Хуманитарен спортски турнир: Играме со срце, заедно за Кочани" loading="lazy"></div>
|
||||
<h3>Хуманитарен спортски турнир: Играме со срце, заедно за Кочани</h3>
|
||||
</a>
|
||||
<a class="mm-show" href="../projects/paint-and-wine-at-sunset/">
|
||||
<div class="mm-show-media"><img src="../../images/paint-wine-1.webp" alt="Сликање и вино на зајдисонце, славење на Денот на жената со уметност и музика" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="1600" height="1067" src="../../images/paint-wine-1.webp" alt="Сликање и вино на зајдисонце, славење на Денот на жената со уметност и музика" loading="lazy"></div>
|
||||
<h3>Сликање и вино на зајдисонце, славење на Денот на жената со уметност и музика</h3>
|
||||
</a>
|
||||
<a class="mm-show" href="../projects/morning-coffee-in-front-of-ctk/">
|
||||
<div class="mm-show-media"><img src="../../images/event4-image1.webp" alt="Утринско кафе пред ЦТК, 2024: Кафе, бурек и многу насмевки" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="1920" height="1280" src="../../images/event4-image1.webp" alt="Утринско кафе пред ЦТК, 2024: Кафе, бурек и многу насмевки" loading="lazy"></div>
|
||||
<h3>Утринско кафе пред ЦТК, 2024: Кафе, бурек и многу насмевки</h3>
|
||||
</a>
|
||||
<a class="mm-show" href="../projects/watching-handball-together-in-slovenia/">
|
||||
<div class="mm-show-media"><img src="../../images/handball-2025-1.webp" alt="Навивање за Македонија, заедничко гледање ракомет во Словенија" loading="lazy"></div>
|
||||
<div class="mm-show-media"><img width="720" height="480" src="../../images/handball-2025-1.webp" alt="Навивање за Македонија, заедничко гледање ракомет во Словенија" loading="lazy"></div>
|
||||
<h3>Навивање за Македонија, заедничко гледање ракомет во Словенија</h3>
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -607,5 +607,7 @@
|
|||
<script src="../../main.js"></script>
|
||||
<script src="../../member-form.js"></script>
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -348,7 +348,7 @@
|
|||
<div class="container">
|
||||
<div class="cta-content">
|
||||
<h2>Не пропуштајте ниту една новост од МСОС</h2>
|
||||
<p>Вести, соопштенија и отворени повици — директно во вашето сандаче.</p>
|
||||
<p>Вести, соопштенија и отворени повици, директно во вашето сандаче.</p>
|
||||
<form class="subscribe-form-bottom">
|
||||
<div class="input-wrapper">
|
||||
<input type="email" placeholder="Внесете ја вашата е-пошта">
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Поврзување до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -208,7 +208,7 @@
|
|||
|
||||
<h2>Како користиме колачиња</h2>
|
||||
|
||||
<p>Колачињата ги сведуваме на минимум. Строго неопходните колачиња и колачињата за преференции (како помнење на вашиот јазик) се секогаш активни. Дополнително користиме Google Analytics за да разбереме како се користи страницата и да ја подобриме, но само ако ги прифатите аналитичките колачиња преку нашиот банер за согласност — ниту едно аналитичко колаче не се поставува додека не се согласите.</p>
|
||||
<p>Колачињата ги сведуваме на минимум. Строго неопходните колачиња и колачињата за преференции (како помнење на вашиот јазик) се секогаш активни. Дополнително користиме Google Analytics за да разбереме како се користи страницата и да ја подобриме, но само ако ги прифатите аналитичките колачиња преку нашиот банер за согласност, ниту едно аналитичко колаче не се поставува додека не се согласите.</p>
|
||||
|
||||
<h2>Типови колачиња што може да ги користиме</h2>
|
||||
|
||||
|
|
@ -314,5 +314,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" defer></script>
|
||||
<meta name="description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија — пријави, престој, работа, сместување и повеќе.">
|
||||
<meta name="description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија, пријави, престој, работа, сместување и повеќе.">
|
||||
<link rel="canonical" href="https://msosorg.com/mk/faq/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/faq/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/faq/">
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Македонска студентска организација во Словенија">
|
||||
<meta property="og:title" content="Често поставувани прашања - MSOS">
|
||||
<meta property="og:description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија — пријави, престој, работа, сместување и повеќе.">
|
||||
<meta property="og:description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија, пријави, престој, работа, сместување и повеќе.">
|
||||
<meta property="og:url" content="https://msosorg.com/mk/faq/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="mk_MK">
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Често поставувани прашања - MSOS">
|
||||
<meta name="twitter:description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија — пријави, престој, работа, сместување и повеќе.">
|
||||
<meta name="twitter:description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија, пријави, престој, работа, сместување и повеќе.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Македонска студентска организација во Словенија","alternateName":"MSOS","url":"https://msosorg.com/mk/","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">
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Поврзување до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -529,5 +529,7 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
gtag('config', 'G-WVYV807VSS');
|
||||
</script>
|
||||
<script src="/consent.js" defer></script>
|
||||
<meta name="description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија — пријави, престој, работа, сместување и повеќе.">
|
||||
<meta name="description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија, пријави, престој, работа, сместување и повеќе.">
|
||||
<link rel="canonical" href="https://msosorg.com/mk/gallery/">
|
||||
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/gallery/">
|
||||
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/gallery/">
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Македонска студентска организација во Словенија">
|
||||
<meta property="og:title" content="Галерија - MSOS">
|
||||
<meta property="og:description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија — пријави, престој, работа, сместување и повеќе.">
|
||||
<meta property="og:description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија, пријави, престој, работа, сместување и повеќе.">
|
||||
<meta property="og:url" content="https://msosorg.com/mk/gallery/">
|
||||
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<meta property="og:locale" content="mk_MK">
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
<meta property="og:locale:alternate" content="sl_SI">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Галерија - MSOS">
|
||||
<meta name="twitter:description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија — пријави, престој, работа, сместување и повеќе.">
|
||||
<meta name="twitter:description" content="Кратки одговори на прашањата што најчесто ги поставуваат македонските студенти за студирање и живеење во Словенија, пријави, престој, работа, сместување и повеќе.">
|
||||
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
|
||||
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Македонска студентска организација во Словенија","alternateName":"MSOS","url":"https://msosorg.com/mk/","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">
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Поврзување до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -202,9 +202,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../mk/projects/meet-student-slovenia-2024/" aria-label="Запознај ја студентска Словенија 2024">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/event4-img-1.webp" alt="Запознај ја студентска Словенија 2024 — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event4-img-2.webp" alt="Запознај ја студентска Словенија 2024 — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event4-img-3.webp" alt="Запознај ја студентска Словенија 2024 — photo 3"><span class="cover-more-badge">+9</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event4-img-1.webp" alt="Запознај ја студентска Словенија 2024, photo 1"></span>
|
||||
<span class="album-tile"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event4-img-2.webp" alt="Запознај ја студентска Словенија 2024, photo 2"></span>
|
||||
<span class="album-tile"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event4-img-3.webp" alt="Запознај ја студентска Словенија 2024, photo 3"><span class="cover-more-badge">+9</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Запознај ја студентска Словенија 2024</h3>
|
||||
|
|
@ -215,9 +215,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../mk/projects/meet-student-slovenia-2023/" aria-label="Запознај ја студентска Словенија 2023">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt="Запознај ја студентска Словенија 2023 — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event3-photo-2.webp" alt="Запознај ја студентска Словенија 2023 — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event3-photo-3.webp" alt="Запознај ја студентска Словенија 2023 — photo 3"><span class="cover-more-badge">+7</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt="Запознај ја студентска Словенија 2023, photo 1"></span>
|
||||
<span class="album-tile"><img width="1920" height="1317" loading="lazy" decoding="async" src="../../images/event3-photo-2.webp" alt="Запознај ја студентска Словенија 2023, photo 2"></span>
|
||||
<span class="album-tile"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event3-photo-3.webp" alt="Запознај ја студентска Словенија 2023, photo 3"><span class="cover-more-badge">+7</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Запознај ја студентска Словенија 2023</h3>
|
||||
|
|
@ -228,9 +228,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../mk/projects/humanitarian-tournament-in-maribor/" aria-label="Хуманитарен турнир во Марибор">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/maribor-tournament-1.webp" alt="Хуманитарен турнир во Марибор — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/maribor-tournament-2.webp" alt="Хуманитарен турнир во Марибор — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/maribor-tournament-3.webp" alt="Хуманитарен турнир во Марибор — photo 3"><span class="cover-more-badge">+7</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/maribor-tournament-1.webp" alt="Хуманитарен турнир во Марибор, photo 1"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/maribor-tournament-2.webp" alt="Хуманитарен турнир во Марибор, photo 2"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/maribor-tournament-3.webp" alt="Хуманитарен турнир во Марибор, photo 3"><span class="cover-more-badge">+7</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Хуманитарен турнир во Марибор</h3>
|
||||
|
|
@ -241,9 +241,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../mk/projects/macedonian-student-night-in-ljubljana/" aria-label="Македонска студентска вечер во Љубљана">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/msnl-1.webp" alt="Македонска студентска вечер во Љубљана — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/msnl-2.webp" alt="Македонска студентска вечер во Љубљана — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/msnl-3.webp" alt="Македонска студентска вечер во Љубљана — photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="1430" height="757" loading="lazy" decoding="async" src="../../images/msnl-1.webp" alt="Македонска студентска вечер во Љубљана, photo 1"></span>
|
||||
<span class="album-tile"><img width="936" height="422" loading="lazy" decoding="async" src="../../images/msnl-2.webp" alt="Македонска студентска вечер во Љубљана, photo 2"></span>
|
||||
<span class="album-tile"><img width="1087" height="586" loading="lazy" decoding="async" src="../../images/msnl-3.webp" alt="Македонска студентска вечер во Љубљана, photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Македонска студентска вечер во Љубљана</h3>
|
||||
|
|
@ -254,9 +254,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../mk/projects/paint-and-wine-at-sunset/" aria-label="Сликање и вино на зајдисонце">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/paint-wine-1.webp" alt="Сликање и вино на зајдисонце — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/paint-wine-2.webp" alt="Сликање и вино на зајдисонце — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/paint-wine-3.webp" alt="Сликање и вино на зајдисонце — photo 3"><span class="cover-more-badge">+6</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="1600" height="1067" loading="lazy" decoding="async" src="../../images/paint-wine-1.webp" alt="Сликање и вино на зајдисонце, photo 1"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/paint-wine-2.webp" alt="Сликање и вино на зајдисонце, photo 2"></span>
|
||||
<span class="album-tile"><img width="1600" height="1067" loading="lazy" decoding="async" src="../../images/paint-wine-3.webp" alt="Сликање и вино на зајдисонце, photo 3"><span class="cover-more-badge">+6</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Сликање и вино на зајдисонце</h3>
|
||||
|
|
@ -267,9 +267,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../mk/projects/watching-handball-together-in-slovenia/" aria-label="Заедничко гледање ракомет во Словенија">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/handball-2025-1.webp" alt="Заедничко гледање ракомет во Словенија — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/handball-2025-2.webp" alt="Заедничко гледање ракомет во Словенија — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/handball-2025-3.webp" alt="Заедничко гледање ракомет во Словенија — photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/handball-2025-1.webp" alt="Заедничко гледање ракомет во Словенија, photo 1"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/handball-2025-2.webp" alt="Заедничко гледање ракомет во Словенија, photo 2"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/handball-2025-3.webp" alt="Заедничко гледање ракомет во Словенија, photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Заедничко гледање ракомет во Словенија</h3>
|
||||
|
|
@ -280,9 +280,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../mk/projects/morning-coffee-in-front-of-ctk/" aria-label="Утринско кафе пред ЦТК">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/event4-image1.webp" alt="Утринско кафе пред ЦТК — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event4-image2.webp" alt="Утринско кафе пред ЦТК — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/event4-image3.webp" alt="Утринско кафе пред ЦТК — photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event4-image1.webp" alt="Утринско кафе пред ЦТК, photo 1"></span>
|
||||
<span class="album-tile"><img width="1425" height="950" loading="lazy" decoding="async" src="../../images/event4-image2.webp" alt="Утринско кафе пред ЦТК, photo 2"></span>
|
||||
<span class="album-tile"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event4-image3.webp" alt="Утринско кафе пред ЦТК, photo 3"><span class="cover-more-badge">+4</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Утринско кафе пред ЦТК</h3>
|
||||
|
|
@ -293,9 +293,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../mk/projects/in-memory-of-frosina-kulakova/" aria-label="Во спомен на Фросина Кулакова">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/frosina-1.webp" alt="Во спомен на Фросина Кулакова — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/frosina-2.webp" alt="Во спомен на Фросина Кулакова — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/frosina-3.webp" alt="Во спомен на Фросина Кулакова — photo 3"></span>
|
||||
<span class="album-tile album-tile--main"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/frosina-1.webp" alt="Во спомен на Фросина Кулакова, photo 1"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/frosina-2.webp" alt="Во спомен на Фросина Кулакова, photo 2"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/frosina-3.webp" alt="Во спомен на Фросина Кулакова, photo 3"></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Во спомен на Фросина Кулакова</h3>
|
||||
|
|
@ -306,9 +306,9 @@
|
|||
<article class="album-card">
|
||||
<a class="album-link-wrap" href="../../mk/projects/in-memory-of-the-kochani-victims/" aria-label="Во спомен на жртвите во Кочани">
|
||||
<div class="album-cover">
|
||||
<span class="album-tile album-tile--main"><img loading="lazy" decoding="async" src="../../images/kochani-1.webp" alt="Во спомен на жртвите во Кочани — photo 1"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/kochani-2.webp" alt="Во спомен на жртвите во Кочани — photo 2"></span>
|
||||
<span class="album-tile"><img loading="lazy" decoding="async" src="../../images/kochani-3.webp" alt="Во спомен на жртвите во Кочани — photo 3"><span class="cover-more-badge">+1</span></span>
|
||||
<span class="album-tile album-tile--main"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/kochani-1.webp" alt="Во спомен на жртвите во Кочани, photo 1"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/kochani-2.webp" alt="Во спомен на жртвите во Кочани, photo 2"></span>
|
||||
<span class="album-tile"><img width="720" height="480" loading="lazy" decoding="async" src="../../images/kochani-3.webp" alt="Во спомен на жртвите во Кочани, photo 3"><span class="cover-more-badge">+1</span></span>
|
||||
</div>
|
||||
<div class="album-info">
|
||||
<h3>Во спомен на жртвите во Кочани</h3>
|
||||
|
|
@ -382,5 +382,7 @@
|
|||
</footer>
|
||||
<!-- END_FOOTER -->
|
||||
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Правилна патека до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-food-shared-table-hero.webp" alt="A shared Macedonian table with salads, bread, beans, and other dishes">
|
||||
<img width="1209" height="806" fetchpriority="high" src="../../../images/macedonia-food-shared-table-hero.webp" alt="A shared Macedonian table with salads, bread, beans, and other dishes">
|
||||
<figcaption>Заедничка македонска трпеза. Фото: nehruresen, <a href="https://depositphotos.com/" target="_blank" rel="noopener">Depositphotos</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
<p>Не му треба декорација. Доволни се леб и време.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-food-tavce-gravce.webp" alt="Tavče gravče baked and served in a clay dish">
|
||||
<img width="1400" height="933" loading="lazy" decoding="async" src="../../../images/macedonia-food-tavce-gravce.webp" alt="Tavče gravče baked and served in a clay dish">
|
||||
<figcaption>Тавче гравче, македонско јадење од грав. Фото: <a href="https://en.wikipedia.org/wiki/Tav%C4%8De_grav%C4%8De" target="_blank" rel="noopener">Wikipedia</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -275,7 +275,7 @@
|
|||
<p>Пастрмајлијата е добар пример како едно јадење носи градски идентитет. Луѓето не разговараат само дали е добра. Разговараат и од каде доаѓа вистинската верзија.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-food-ajvar-preparation.webp" alt="Roasted red peppers being prepared for homemade ajvar">
|
||||
<img width="1400" height="933" loading="lazy" decoding="async" src="../../../images/macedonia-food-ajvar-preparation.webp" alt="Roasted red peppers being prepared for homemade ajvar">
|
||||
<figcaption>Ајвар, вар од печени црвени пиперки. Фото: <a href="https://100daysandnights.com/ajvar/" target="_blank" rel="noopener">100daysandnights.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -308,7 +308,7 @@
|
|||
<p>За посетителот, корисната лекција е македонското гостопримство да не се мери преку ефикасност. Дополнителното време е дел од она што се нуди.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-food-pastrmajlija.webp" alt="A traditional oval pastrmajlija topped with seasoned meat">
|
||||
<img width="1000" height="667" loading="lazy" decoding="async" src="../../../images/macedonia-food-pastrmajlija.webp" alt="A traditional oval pastrmajlija topped with seasoned meat">
|
||||
<figcaption>Пастрмајлија, македонски леб со месо. Фото: <a href="https://balkantravel.rs/en/gastro-corner/pastrmajlija-the-irresistible-taste-of-north-macedonia/" target="_blank" rel="noopener">balkantravel.rs</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -391,5 +391,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Правилна патека до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-heritage-stobi-street-hero.webp" alt="An ancient street and building remains at the archaeological site of Stobi">
|
||||
<img width="1050" height="700" fetchpriority="high" src="../../../images/macedonia-heritage-stobi-street-hero.webp" alt="An ancient street and building remains at the archaeological site of Stobi">
|
||||
<figcaption>Стоби, антички град во централна Македонија. Фото: <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>
|
||||
|
||||
|
|
@ -246,7 +246,7 @@
|
|||
<p>Локалитетот не треба да се претставува само како античка урнатина. Тој е и запис за археолошкото истражување, конзервацијата, реконструкцијата и одлуките за тоа како наследството се покажува пред јавноста.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-heritage-heraclea-mosaic.webp" alt="A preserved early Christian mosaic at Heraclea Lyncestis near Bitola">
|
||||
<img width="766" height="511" loading="lazy" decoding="async" src="../../../images/macedonia-heritage-heraclea-mosaic.webp" alt="A preserved early Christian mosaic at Heraclea Lyncestis near Bitola">
|
||||
<figcaption>Хераклеја Линкестис, антички град кај Битола. Фото: Elizabeta Dimitrova, <a href="https://www.researchgate.net/figure/Heraclea-Lyncestis-detail_fig5_349303661" target="_blank" rel="noopener">ResearchGate</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -285,7 +285,7 @@
|
|||
<p>Крушево не е еден споменик. Тоа е мрежа на места во кои се преклопуваат национални, локални, влашки, уметнички и семејни истории.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-heritage-kokino.jpg" alt="The rocky archaeological landscape of Kokino at Tatićev Kamen">
|
||||
<img width="810" height="540" loading="lazy" decoding="async" src="../../../images/macedonia-heritage-kokino.jpg" alt="The rocky archaeological landscape of Kokino at Tatićev Kamen">
|
||||
<figcaption>Кокино, праисториска мегалитска опсерваторија. Фото: <a href="https://northmacedonia-timeless.com/eng/things_to_do/senses/touch/archaeology/kokino/" target="_blank" rel="noopener">northmacedonia-timeless.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -302,7 +302,7 @@
|
|||
<p>Наследството станува посилно кога во приказната ќе се зачува и патеката меѓу објектите.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-heritage-krusevo-makedonium.jpg" alt="The Ilinden Monument, known as Makedonium, above Krusevo">
|
||||
<img width="590" height="393" loading="lazy" decoding="async" src="../../../images/macedonia-heritage-krusevo-makedonium.jpg" alt="The Ilinden Monument, known as Makedonium, above Krusevo">
|
||||
<figcaption>Македониум, споменикот Илинден над Крушево. Фото: <a href="https://www.airvuz.com/video/ALIEN-Monument-?id=5b3c05705a1b667101abd26f" target="_blank" rel="noopener">airvuz.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -397,5 +397,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Поврзување до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -197,7 +197,7 @@
|
|||
<h1>Запознај ја Македонија</h1>
|
||||
<p class="page-description">Македонија не е само место на картата. Таа е трпеза на која секогаш има место за уште еден човек, музика што нè зближува, планини на хоризонтот и разговори што продолжуваат долго по последното кафе. Ова се местата, традициите, вкусовите и приказните што ги носиме со себе и сакаме да ги споделиме со вас.</p>
|
||||
<form class="subscribe-form">
|
||||
<input type="email" placeholder="Внесете ја вашата е-пошта">
|
||||
<input type="email" placeholder="Внесете ја вашата е-пошта" aria-label="Е-пошта">
|
||||
<button type="submit" class="btn btn-primary-orange">Претплати се</button>
|
||||
</form>
|
||||
<p class="privacy-note">Ние се грижиме за вашите податоци во нашата <a href="../../mk/privacy-policy/">политика за приватност</a></p>
|
||||
|
|
@ -222,7 +222,7 @@
|
|||
<!-- Story: Добредојдовте во Македонија -->
|
||||
<article class="post-card" data-category="identity">
|
||||
<a href="welcome-to-macedonia/" class="post-link">
|
||||
<img loading="lazy" decoding="async" src="../../images/macedonia-welcome-skopje-square-hero.webp" alt="Macedonia Square in central Skopje" class="post-image">
|
||||
<img width="810" height="540" 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">Тим на МСОС • Луѓе и идентитет</p>
|
||||
<h3 class="post-title">Добредојдовте во Македонија</h3>
|
||||
|
|
@ -233,7 +233,7 @@
|
|||
<!-- Story: Охрид, повеќе од разгледница -->
|
||||
<article class="post-card" data-category="places">
|
||||
<a href="ohrid-more-than-a-postcard/" class="post-link">
|
||||
<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">
|
||||
<img width="750" height="500" 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">Тим на МСОС • Места и природа</p>
|
||||
<h3 class="post-title">Охрид, повеќе од разгледница</h3>
|
||||
|
|
@ -244,7 +244,7 @@
|
|||
<!-- Story: Скопје, град со многу слоеви -->
|
||||
<article class="post-card" data-category="places">
|
||||
<a href="skopje-a-city-of-many-layers/" class="post-link">
|
||||
<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">
|
||||
<img width="810" height="540" 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">Тим на МСОС • Места и природа</p>
|
||||
<h3 class="post-title">Скопје, град со многу слоеви</h3>
|
||||
|
|
@ -255,7 +255,7 @@
|
|||
<!-- Story: Македонија на полна трпеза -->
|
||||
<article class="post-card" data-category="food">
|
||||
<a href="a-table-full-of-macedonia/" class="post-link">
|
||||
<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">
|
||||
<img width="1209" height="806" 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">Тим на МСОС • Храна и вкусови</p>
|
||||
<h3 class="post-title">Македонија на полна трпеза</h3>
|
||||
|
|
@ -266,7 +266,7 @@
|
|||
<!-- Story: Музика, оро и моментите што нè спојуваат -->
|
||||
<article class="post-card" data-category="culture">
|
||||
<a href="music-dance-and-the-moments-that-bring-us-together/" class="post-link">
|
||||
<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">
|
||||
<img width="1400" height="933" 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">Тим на МСОС • Култура и традиции</p>
|
||||
<h3 class="post-title">Музика, оро и моментите што нè спојуваат</h3>
|
||||
|
|
@ -277,7 +277,7 @@
|
|||
<!-- Story: Историја низ која сè уште можеме да чекориме -->
|
||||
<article class="post-card" data-category="heritage">
|
||||
<a href="history-you-can-still-walk-through/" class="post-link">
|
||||
<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">
|
||||
<img width="1050" height="700" 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">Тим на МСОС • Историја и наследство</p>
|
||||
<h3 class="post-title">Историја низ која сè уште можеме да чекориме</h3>
|
||||
|
|
@ -364,5 +364,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Правилна патека до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-culture-oro-celebration-hero.webp" alt="Several generations joining the same oro at a Macedonian celebration">
|
||||
<img width="1400" height="933" fetchpriority="high" src="../../../images/macedonia-culture-oro-celebration-hero.webp" alt="Several generations joining the same oro at a Macedonian celebration">
|
||||
<figcaption>Оро на македонска прослава. Фото: 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>
|
||||
|
||||
|
|
@ -244,7 +244,7 @@
|
|||
<p>За многу луѓе што живеат во странство, овие звуци имаат непосреден емоционален ефект. Неколку тонови можат да вратат спомен на свадба, селска прослава, семејна приказна или место што одамна не е посетено.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-culture-tapan-zurla.jpg" alt="Musicians playing tapan and zurla at an outdoor gathering">
|
||||
<img width="539" height="359" loading="lazy" decoding="async" src="../../../images/macedonia-culture-tapan-zurla.jpg" alt="Musicians playing tapan and zurla at an outdoor gathering">
|
||||
<figcaption>Тапанот и зурлата, традиционални македонски инструменти. Фото: <a href="https://www.instagram.com/p/Cy4eiWxSQ68/" target="_blank" rel="noopener">Instagram</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -281,7 +281,7 @@
|
|||
<p>Луѓе што во секојдневието не избираат иста музика сепак можат да се држат во иста редица.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-culture-kopachkata.jpg" alt="Kopachkata dancers holding their belts in a semicircle in Dramche">
|
||||
<img width="547" height="365" loading="lazy" decoding="async" src="../../../images/macedonia-culture-kopachkata.jpg" alt="Kopachkata dancers holding their belts in a semicircle in Dramche">
|
||||
<figcaption>Копачката, друштвено оро од Драмче. Фото: © 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>
|
||||
|
||||
|
|
@ -314,7 +314,7 @@
|
|||
<p>Промената станува продолжување кога луѓето знаат што пренесуваат понатаму.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/msos-macedonian-music-event.webp" alt="Macedonian students dancing together at an MSOS event in Slovenia">
|
||||
<img width="1400" height="933" loading="lazy" decoding="async" src="../../../images/msos-macedonian-music-event.webp" alt="Macedonian students dancing together at an MSOS event in Slovenia">
|
||||
<figcaption>Фото: MSOS Archive</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -397,5 +397,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Правилна патека до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-ohrid-kaneo-hero.webp" alt="The Church of St. John at Kaneo above Lake Ohrid">
|
||||
<img width="750" height="500" fetchpriority="high" src="../../../images/macedonia-ohrid-kaneo-hero.webp" alt="The Church of St. John at Kaneo above Lake Ohrid">
|
||||
<figcaption>Црквата Св. Јован Канео, Охрид. Фото: <a href="https://www.ciconiatravel.com/2019/11/08/15-fantastic-facts-about-macedonia/" target="_blank" rel="noopener">ciconiatravel.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -240,7 +240,7 @@
|
|||
<p>Не застанувајте само кај познатиот поглед. Продолжете нагоре. Патеката над Канео природно се поврзува со Плаошник и горниот дел од стариот град.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-chinar-tree.webp" alt="The ancient plane tree, the Chinar, in central Ohrid">
|
||||
<img width="1080" height="720" loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-chinar-tree.webp" alt="The ancient plane tree, the Chinar, in central Ohrid">
|
||||
<figcaption>Чинарот, вековното платаново дрво во Охрид. Фото: <a href="https://www.rexby.com/Travelsofmozzy/ttd/ancient-tree-of-beauty" target="_blank" rel="noopener">rexby.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -273,7 +273,7 @@
|
|||
<p>Кога ќе се спуштате, изберете друга улица. Стариот град се менува од една патека до друга.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-plaosnik.webp" alt="Archaeological remains and the Church of Saint Clement at Plaošnik">
|
||||
<img width="810" height="540" loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-plaosnik.webp" alt="Archaeological remains and the Church of Saint Clement at Plaošnik">
|
||||
<figcaption>Плаошник, Охрид. Фото: <a href="https://macedonia-timeless.com/eng/things_to_do/senses/touch/archaeology/plaosnik/" target="_blank" rel="noopener">macedonia-timeless.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -304,7 +304,7 @@
|
|||
<p>Охрид опстанал затоа што природната и културната историја се развивале заедно. Градот не може да се зачува ако езерото се игнорира.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-traditional-houses.webp" alt="Traditional houses along a narrow street in Ohrid's old town">
|
||||
<img width="1400" height="933" loading="lazy" decoding="async" src="../../../images/macedonia-ohrid-traditional-houses.webp" alt="Traditional houses along a narrow street in Ohrid's old town">
|
||||
<figcaption>Старо градско јадро, Охрид. Фото: <a href="https://www.fabionodariphoto.com/en/ohrid-things-to-do/" target="_blank" rel="noopener">fabionodariphoto.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -389,5 +389,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Правилна патека до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-skopje-stone-bridge-hero.webp" alt="The Stone Bridge over the Vardar in Skopje">
|
||||
<img width="810" height="540" fetchpriority="high" src="../../../images/macedonia-skopje-stone-bridge-hero.webp" alt="The Stone Bridge over the Vardar in Skopje">
|
||||
<figcaption>Камен мост, Скопје. Фото: <a href="https://macedonia-timeless.com/eng/about/about/did-you-know/stone-bridge" target="_blank" rel="noopener">macedonia-timeless.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
<p>Чаршијата е и едно од местата каде што мултикултурниот карактер на Скопје е највидлив. Различни верски, јазични, гастрономски и трговски традиции се среќаваат на релативно мал простор.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-skopje-old-bazaar.webp" alt="A working street in the Old Skopje Bazaar">
|
||||
<img width="1020" height="680" loading="lazy" decoding="async" src="../../../images/macedonia-skopje-old-bazaar.webp" alt="A working street in the Old Skopje Bazaar">
|
||||
<figcaption>Стара чаршија, Скопје. Фото: <a href="https://visit-skopje.com/old-bazaar-skopje/" target="_blank" rel="noopener">visit-skopje.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -273,7 +273,7 @@
|
|||
<p>За да го разбереме Скопје, не е најважно дали некоја зграда ни изгледа убава. Поважно е да се прашаме кој проблем се обидувала да го реши и кој момент од историјата на градот ја создал.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<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">
|
||||
<img width="1400" height="933" 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>Музеј на град Скопје. Фото: <a href="https://museumskopje.mk/" target="_blank" rel="noopener">museumskopje.mk</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -292,7 +292,7 @@
|
|||
<p>Овој контраст може да се доживее во ист ден.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-skopje-vodno-view.webp" alt="A view of Skopje from Mount Vodno">
|
||||
<img width="825" height="550" loading="lazy" decoding="async" src="../../../images/macedonia-skopje-vodno-view.webp" alt="A view of Skopje from Mount Vodno">
|
||||
<figcaption>Планината Водно, Скопје. Фото: <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>
|
||||
|
||||
|
|
@ -379,5 +379,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Правилна патека до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/macedonia-welcome-skopje-square-hero.webp" alt="Macedonia Square in central Skopje">
|
||||
<img width="810" height="540" fetchpriority="high" src="../../../images/macedonia-welcome-skopje-square-hero.webp" alt="Macedonia Square in central Skopje">
|
||||
<figcaption>Плоштад Македонија, Скопје. Фото: <a href="https://macedonia-timeless.com/eng/cities_and_regions/cities/skopje/" target="_blank" rel="noopener">macedonia-timeless.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -238,7 +238,7 @@
|
|||
<p>Затоа нашите спомени од домот толку често се поврзани со луѓето, а не само со местата.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-welcome-hospitality.webp" alt="A traditional Macedonian table filled with local dishes">
|
||||
<img width="960" height="640" loading="lazy" decoding="async" src="../../../images/macedonia-welcome-hospitality.webp" alt="A traditional Macedonian table filled with local dishes">
|
||||
<figcaption>Традиционална македонска трпеза. Фото: 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> (исечена)</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -267,7 +267,7 @@
|
|||
<p>Најзначајно го запознаваме полека, преку пешачење, слушање и дозволување едно место да ни раскаже повеќе од една приказна.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/macedonia-welcome-heritage.webp" alt="The Robevci Family House in the old town of Ohrid">
|
||||
<img width="1400" height="933" loading="lazy" decoding="async" src="../../../images/macedonia-welcome-heritage.webp" alt="The Robevci Family House in the old town of Ohrid">
|
||||
<figcaption>Куќата на семејството Робевци, Охрид. Фото: 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> (исечена)</figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -376,5 +376,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Правилна патека до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../../css/main.css">
|
||||
|
|
@ -200,7 +200,7 @@
|
|||
</header>
|
||||
|
||||
<figure class="article-main-image">
|
||||
<img fetchpriority="high" src="../../../images/slovenia-food-regional-table-hero.webp" alt="Several regional Slovenian dishes served together on a table">
|
||||
<img width="1400" height="933" fetchpriority="high" src="../../../images/slovenia-food-regional-table-hero.webp" alt="Several regional Slovenian dishes served together on a table">
|
||||
<figcaption>Избор од традиционални словенечки јадења. Фото: <a href="https://www.tasteslovenia.si/en/taste-slovenia/traditional-slovenian-food/" target="_blank" rel="noopener">tasteslovenia.si</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -252,7 +252,7 @@
|
|||
<p>Ова е добар потсетник дека наследството не се наоѓа само во згради и музеи. Може да преживее и во формата на едно тестено парче.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-food-idrijski-zlikrofi.webp" alt="Idrijski žlikrofi served with a meat sauce">
|
||||
<img width="1400" height="933" loading="lazy" decoding="async" src="../../../images/slovenia-food-idrijski-zlikrofi.webp" alt="Idrijski žlikrofi served with a meat sauce">
|
||||
<figcaption>Идријски жликрофи, специјалитет од Идрија. Фото: <a href="https://www.turisticnekmetije.si/fr/gastronomie/recettes/recette/idrijski-zlikrofi-z-mesno-omako" target="_blank" rel="noopener">turisticnekmetije.si</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -269,7 +269,7 @@
|
|||
<p>Пробајте ја таму каде што локалното сирење е центар на јадењето, а не само додаток.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-food-frika.webp" alt="Frika made with local cheese and potatoes">
|
||||
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/slovenia-food-frika.webp" alt="Frika made with local cheese and potatoes">
|
||||
<figcaption>Фрика, јадење од сирење и компир од долината на Соча. Фото: <a href="https://jernejkitchen.com/" target="_blank" rel="noopener">jernejkitchen.com</a></figcaption>
|
||||
</figure>
|
||||
|
||||
|
|
@ -298,7 +298,7 @@
|
|||
<p>Купено парче го претставува вкусот. Домашна потица раскажува поширока приказна.</p>
|
||||
|
||||
<figure class="article-inline-image">
|
||||
<img loading="lazy" decoding="async" src="../../../images/slovenia-food-potica.jpg" alt="Sliced walnut potica baked in a traditional round mould">
|
||||
<img width="891" height="594" loading="lazy" decoding="async" src="../../../images/slovenia-food-potica.jpg" alt="Sliced walnut potica baked in a traditional round mould">
|
||||
<figcaption>Потица, традиционален словенечки виен колач. Фото: <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>
|
||||
|
||||
|
|
@ -381,5 +381,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<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" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media='all'" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
|
||||
|
||||
<!-- Поврзување до главната CSS-датотека -->
|
||||
<link rel="stylesheet" href="../../css/main.css">
|
||||
|
|
@ -197,7 +197,7 @@
|
|||
<h1>Запознај ја Словенија</h1>
|
||||
<p class="page-description">Словенија можеби е мала на картата, но меѓу Алпите, Јадранското Море, зелените реки, старите градови и мирните места има многу што да се открие. Преку овие приказни ги споделуваме местата, вкусовите, традициите и секојдневните детали преку кои и ние ја запознавме земјата што денес ја нарекуваме и свој дом.</p>
|
||||
<form class="subscribe-form">
|
||||
<input type="email" placeholder="Внесете ја вашата е-пошта">
|
||||
<input type="email" placeholder="Внесете ја вашата е-пошта" aria-label="Е-пошта">
|
||||
<button type="submit" class="btn btn-primary-orange">Претплати се</button>
|
||||
</form>
|
||||
<p class="privacy-note">Ние се грижиме за вашите податоци во нашата <a href="../../mk/privacy-policy/">политика за приватност</a></p>
|
||||
|
|
@ -222,7 +222,7 @@
|
|||
<!-- Story: Добредојдовте во Словенија -->
|
||||
<article class="post-card" data-category="identity">
|
||||
<a href="welcome-to-slovenia/" class="post-link">
|
||||
<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">
|
||||
<img width="1200" height="800" 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">Тим на МСОС • Луѓе и идентитет</p>
|
||||
<h3 class="post-title">Добредојдовте во Словенија</h3>
|
||||
|
|
@ -233,7 +233,7 @@
|
|||
<!-- Story: Љубљана низ нашите очи -->
|
||||
<article class="post-card" data-category="places">
|
||||
<a href="ljubljana-through-our-eyes/" class="post-link">
|
||||
<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">
|
||||
<img width="1400" height="933" 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">Тим на МСОС • Места и природа</p>
|
||||
<h3 class="post-title">Љубљана низ нашите очи</h3>
|
||||
|
|
@ -244,7 +244,7 @@
|
|||
<!-- Story: Блед, повеќе од познатата глетка -->
|
||||
<article class="post-card" data-category="places">
|
||||
<a href="lake-bled-beyond-the-famous-view/" class="post-link">
|
||||
<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">
|
||||
<img width="1023" height="682" 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">Тим на МСОС • Места и природа</p>
|
||||
<h3 class="post-title">Блед, повеќе од познатата глетка</h3>
|
||||
|
|
@ -255,7 +255,7 @@
|
|||
<!-- Story: Првиот вкус на словенечката кујна -->
|
||||
<article class="post-card" data-category="food">
|
||||
<a href="a-first-taste-of-slovenian-food/" class="post-link">
|
||||
<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">
|
||||
<img width="1400" height="933" 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">Тим на МСОС • Храна и вкусови</p>
|
||||
<h3 class="post-title">Првиот вкус на словенечката кујна</h3>
|
||||
|
|
@ -266,7 +266,7 @@
|
|||
<!-- Story: Словенечки навики што можеби ќе ве изненадат -->
|
||||
<article class="post-card" data-category="culture">
|
||||
<a href="slovenian-habits-that-may-surprise-you/" class="post-link">
|
||||
<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">
|
||||
<img width="1400" height="933" 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">Тим на МСОС • Култура и традиции</p>
|
||||
<h3 class="post-title">Словенечки навики што можеби ќе ве изненадат</h3>
|
||||
|
|
@ -277,7 +277,7 @@
|
|||
<!-- Story: Приказните на Словенија во камен и традиција -->
|
||||
<article class="post-card" data-category="heritage">
|
||||
<a href="slovenias-stories-in-stone-and-tradition/" class="post-link">
|
||||
<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">
|
||||
<img width="1400" height="933" 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">Тим на МСОС • Историја и наследство</p>
|
||||
<h3 class="post-title">Приказните на Словенија во камен и традиција</h3>
|
||||
|
|
@ -364,5 +364,7 @@
|
|||
<!-- END_FOOTER -->
|
||||
|
||||
<script src="../../main.js"></script>
|
||||
<link rel="stylesheet" href="/assistant.css">
|
||||
<script src="/assistant.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue