Германы нийслэл Берлин хотод болсон ижил хүйстнүүдийн баярын жагсаалын үеэр автомашин олон нийтийн цугларалт руу дайрсны улмаас хэд хэдэн хүн бэртэж гэмтсэн байна.
Бямба гарагийн орой гарсан энэхүү ослын талаар цагдаагийн байгууллагаас мэдээлэл өглөө. Одоогоор гэмтэж бэртсэн хүмүүсийн тоо болон ослын шалтгааны талаарх дэлгэрэнгүй мэдээлэл тодорхойгүй байна.
Цагдаагийнхан хэргийн газарт ажиллаж байгаа бөгөөд нөхцөл байдлыг тодруулахаар ажиллаж байна. Энэхүү үйл явдалтай холбоотой нэмэлт мэдээллийг албаны эх сурвалжууд удахгүй танилцуулах төлөвтэй байна.
Дэлгэрэнгүйг эх сурвалжаас харах
↓Эх сурвалжийг нээх ↓
Several people have been injured, police said
Published 25 Jul, 2026 21:14
A car ploughed into a crowdduring a gay pride parade in Berlin on Saturday night, injuring several people, police said.
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: ”
}
})
})
]]>


