mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-11-28 09:08:38 +02:00
Update Layout.js
This commit is contained in:
parent
46ccd73097
commit
568e0d231a
@ -4,14 +4,13 @@ import Head from '@docusaurus/Head';
|
||||
|
||||
export default function CustomLayout(props) {
|
||||
useEffect(() => {
|
||||
|
||||
if (!location.pathname.startsWith('/docs/')) {
|
||||
return; // Если нет, не добавляем блок
|
||||
return; // Если не на странице документации, не добавляем блок
|
||||
}
|
||||
|
||||
// Создаем контейнер для второго рекламного блока
|
||||
const adContainer = document.createElement('div');
|
||||
adContainer.id = 'R-A-12294791-5';
|
||||
adContainer.id = 'yandex_rtb_R-A-12294791-5';
|
||||
adContainer.style.marginTop = '20px'; // Добавим отступ для красоты
|
||||
|
||||
// Находим элемент кнопок "Previous" и "Next" и вставляем перед ним
|
||||
@ -23,30 +22,27 @@ export default function CustomLayout(props) {
|
||||
document.body.appendChild(adContainer);
|
||||
}
|
||||
|
||||
|
||||
// Создаем скрипт для рендеринга рекламы
|
||||
const script = document.createElement('script');
|
||||
script.innerHTML = `
|
||||
window.yaContextCb.push(() => {
|
||||
Ya.Context.AdvManager.render({
|
||||
"blockId": "R-A-12294791-3",
|
||||
"type": "floorAd",
|
||||
"platform": "touch"
|
||||
});
|
||||
window.yaContextCb.push(() => {
|
||||
Ya.Context.AdvManager.render({
|
||||
"blockId": "R-A-12294791-3",
|
||||
"type": "floorAd",
|
||||
"platform": "touch"
|
||||
});
|
||||
|
||||
Ya.Context.AdvManager.render({
|
||||
"blockId": "R-A-12294791-4",
|
||||
"type": "floorAd",
|
||||
"platform": "desktop"
|
||||
});
|
||||
Ya.Context.AdvManager.render({
|
||||
"blockId": "R-A-12294791-4",
|
||||
"type": "floorAd",
|
||||
"platform": "desktop"
|
||||
});
|
||||
|
||||
Ya.Context.AdvManager.render({
|
||||
"blockId": "R-A-12294791-5",
|
||||
"renderTo": "yandex_rtb_R-A-12294791-5"
|
||||
})
|
||||
|
||||
});
|
||||
|
||||
})
|
||||
Ya.Context.AdvManager.render({
|
||||
"blockId": "R-A-12294791-5",
|
||||
"renderTo": "yandex_rtb_R-A-12294791-5"
|
||||
});
|
||||
});
|
||||
`;
|
||||
document.body.appendChild(script);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user