Филиппин улсын Манила хотноо зохион байгуулагдаж буй АСЕАН-ы дээд хэмжээний уулзалтын хүрээнд ОХУ-ын Гадаад хэргийн сайд Сергей Лавров болон АНУ-ын Төрийн нарийн бичгийн дарга Марко Рубио нар хэлэлцээ хийж эхэллээ.
2026 оны долдугаар сарын 23-ны өдөр болж буй энэхүү уулзалт нь 2025 оны есдүгээр сараас хойшхи хоёр улсын дипломат төлөөлөгчдийн анхны биечилсэн уулзалт юм. Талууд олон улсын харилцааны хүрээнд тулгамдаж буй асуудлуудаар санал солилцох төлөвтэй байна.
Уулзалтын үр дүн болон хэлэлцсэн асуудлын талаарх дэлгэрэнгүй мэдээлэл одоогоор тодорхойгүй байна. Албаны эх сурвалжууд уулзалт үргэлжилж байгааг мэдээллээ.
Дэлгэрэнгүйг эх сурвалжаас харах
↓Эх сурвалжийг нээх ↓
The top diplomats of Russia and the US are meeting in person for the first time since September 2025
Published 23 Jul, 2026 04:09
| Updated 23 Jul, 2026 04:10
Russian Foreign Minister Sergey Lavrov and US Secretary of State Marco Rubio have begun their meeting on the sidelines of the ASEAN summit in Manila, the Philippines.
DETAILS TO FOLLOW
You can share this story on social media:
{
evtC.preventDefault();
});
const mainArticle = document.querySelector(‘.article’);
const articleParent = mainArticle.parentNode;
const listingElement = document.querySelector(‘.article__listing’).querySelector(‘.js-listing’);
const articles = [{
title: document.title,
root: mainArticle,
url: window.location.href,
}];
const mainURL = window.location.pathname;
let loadMoreButton = null;
let listingPressed = false;
let nextArticleNetworking = false;
let activeArticleIndex = 0;
let playerStylesAdded = !!document.querySelector(‘.jwplayer’);
let counter = 1;
const loadScript = async (src) => {
return new Promise((resolve, reject) => {
const script = document.createElement(‘script’);
script.src = src;
script.onload = () => {
resolve();
};
script.onerror = () => reject(new Error(`Script load error: ${src}`));
document.body.appendChild(script);
});
};
const prepareScripts = (root) => {
const children = Array.from(root.children);
const scripts = [];
children.forEach((child) => {
if (child.tagName === ‘SCRIPT’) {
scripts.push(child);
return;
}
if (child.children.length > 0) {
prepareScripts(child);
}
});
return scripts;
};
const getNextArticle = async () => {
if (nextArticleNetworking) {
return;
}
nextArticleNetworking = true;
let nextLink = window.nextSet.values().next().value;
if (mainURL === nextLink) {
window.nextSet.delete(nextLink);
nextLink = window.nextSet.values().next().value;
}
Array.from(listingElement.querySelectorAll(‘script’)).forEach((script) => {
script.remove();
});
if (nextLink) {
try {
const resultHTML = await fetch(nextLink).then((res) => res.text());
const item = document.createElement(‘div’);
item.innerHTML = resultHTML;
const articleRawContent = item.querySelector(‘.article__text’);
const frame = document.createElement(‘iframe’);
frame.addEventListener(‘load’, async () => {
nextArticleNetworking = false;
const iframeDocument = frame.contentDocument || frame.contentWindow.document;
const newArticle = iframeDocument.querySelector(‘.article’);
const newArticleContent = newArticle.querySelector(‘.article__text’);
const listing = newArticle.querySelector(‘.article__listing’);
listing?.remove();
newArticleContent.after(articleRawContent);
newArticleContent.remove();
counter += 1;
const yaBlock = newArticle.querySelector(‘.article__ya-recommendations’);
let yaRecommmendationsRoot = null;
if (counter % 3 !== 0) {
if (yaBlock) {
yaBlock.remove();
}
} else {
const yaScript = yaBlock.querySelector(‘script’);
if (yaScript) {
yaScript.remove();
}
yaRecommmendationsRoot = yaBlock.querySelector(‘.yandex_recommendations’);
if (yaRecommmendationsRoot) {
yaRecommmendationsRoot.id = `${yaRecommmendationsRoot.id}${counter}`;
}
}
articles.push({
title: iframeDocument.querySelector(‘title’).textContent,
root: newArticle,
url: nextLink,
});
articleParent.append(newArticle);
if (window.yaContextCb && yaRecommmendationsRoot) {
try {
window.yaContextCb.push(()=>{
Ya.adfoxCode.create({
ownerId: 258144,
containerId: `${yaRecommmendationsRoot.id}`,
sequentialLoading: true,
params: {
pp: ‘h’,
ps: ‘douc’,
p2: ‘gqqu’,
puid1: ”,
puid2: ”,
puid3: ”,
puid4: ”,
puid5: ”,
puid63: ”
}
})
});
} catch(e) {
console.log(e);
}
}
const scripts = prepareScripts(articleRawContent);
for (const script of scripts) {
if (script.src) {
try {
await loadScript(script.src);
} catch (e) {
console.log(e);
}
script.remove();
} else {
const inlineScript = document.createElement(‘script’);
inlineScript.textContent = script.textContent;
script.after(inlineScript);
script.remove();
}
}
});
frame.addEventListener(‘error’, () => {
nextArticleNetworking = false;
frame.remove();
throw new Error(‘Unable to load url’);
});
frame.style = “display: none;”
document.body.append(frame);
frame.src = `${window.location.origin}${nextLink}`;
} catch(error) {
console.log(error);
}
window.nextSet.delete(nextLink);
}
};
const getListingScrollProgress = () => {
const rect = listingElement.getBoundingClientRect();
const progress = ((window.innerHeight – rect.y) / listingElement.clientHeight);
return progress;
};
const onListingScroll = () => {
if (nextArticleNetworking) {
return;
}
if (getListingScrollProgress() >= 0.8 && window.nextSet.size === 0 && !listingPressed) {
listingPressed = true;
window.loadMoreArticlesButton.click();
setTimeout(() => {
listingPressed = false;
}, 500);
}
};
const onArticlesScroll = () => {
let newIndex = 0;
articles.forEach((article, index) => {
const articleRect = article.root.getBoundingClientRect();
const scrollProgress = (window.innerHeight – articleRect.y) / article.root.clientHeight;
if (scrollProgress >= 0.2) {
newIndex = index;
}
if (index === (articles.length – 1) && scrollProgress >= 0.5 && !nextArticleNetworking) {
getNextArticle();
}
});
if (activeArticleIndex !== newIndex) {
window.history.replaceState({}, articles[newIndex].title, articles[newIndex].url);
document.title = articles[newIndex].title;
}
activeArticleIndex = newIndex;
}
onListingScroll();
window.addEventListener(‘scroll’, onListingScroll, { passive: true });
window.addEventListener(‘scroll’, onArticlesScroll);
}
const scriptListing = document.querySelector(‘[data-scriptlisting]’);
scriptListing.remove();
]]>
Ya.adfoxCode.create({
ownerId: 258144,
containerId: ‘adfox_174039578397067785’,
sequentialLoading: true,
params: {
pp: ‘h’,
ps: ‘douc’,
p2: ‘gqqu’,
puid1: ”,
puid2: ”,
puid3: ”,
puid4: ”,
puid5: ”,
puid63: ”
}
})
})
]]>


