Update pages.html
Browse files- pages.html +1 -111
pages.html
CHANGED
@@ -348,118 +348,8 @@ const editor = grapesjs.init({
|
|
348 |
</script>
|
349 |
|
350 |
|
|
|
351 |
|
352 |
-
<script>
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
// Добавление русского языка
|
364 |
-
editor.I18n.addMessages({
|
365 |
-
ru: {
|
366 |
-
styleManager: {
|
367 |
-
sectors: {
|
368 |
-
'general': 'Общие',
|
369 |
-
'dimension': 'Размер',
|
370 |
-
'typography': 'Типографика',
|
371 |
-
'decorations': 'Оформление',
|
372 |
-
'extra': 'Ещё больше',
|
373 |
-
'flex': 'Flex',
|
374 |
-
|
375 |
-
},
|
376 |
-
properties: {
|
377 |
-
'background-repeat': 'Повторение',
|
378 |
-
'background-position': 'Позиция',
|
379 |
-
'width': 'Ширина',
|
380 |
-
'height': 'Высота',
|
381 |
-
'max-width': 'Макс. ширина',
|
382 |
-
'min-height': 'Мин. высота',
|
383 |
-
'margin': 'Отступ',
|
384 |
-
'padding': 'Внутр.отступ',
|
385 |
-
'font-family': 'Шрифт',
|
386 |
-
'font-size': 'Размер шрифта',
|
387 |
-
'font-weight': 'Толщина шрифта',
|
388 |
-
'color': 'Цвет текста',
|
389 |
-
'text-align': 'Вырав. текста',
|
390 |
-
'text-decoration': 'Оформ. текста',
|
391 |
-
'text-shadow': 'Текст. тень',
|
392 |
-
'opacity': 'Прозрачность',
|
393 |
-
'border-radius': 'Радиус скруг.',
|
394 |
-
'border': 'Граница',
|
395 |
-
'box-shadow': 'Тень блока',
|
396 |
-
'background': 'Фон',
|
397 |
-
|
398 |
-
}
|
399 |
-
},
|
400 |
-
blockManager: {
|
401 |
-
labels: {
|
402 |
-
'responsive-image': 'Адаптивное изображение',
|
403 |
-
'centered-text': 'Центрированный текст',
|
404 |
-
}
|
405 |
-
},
|
406 |
-
panels: {
|
407 |
-
buttons: {
|
408 |
-
'open-code': 'Открыть код',
|
409 |
-
'gjs-open-import-webpage': 'Импортировать',
|
410 |
-
}
|
411 |
-
},
|
412 |
-
commands: {
|
413 |
-
'gjs-open-import-webpage': {
|
414 |
-
title: 'Импортировать шаблон',
|
415 |
-
label: '<div style="margin-bottom: 10px; font-size: 13px;">Вставьте здесь ваш HTML/CSS и нажмите Импортировать</div>',
|
416 |
-
}
|
417 |
-
}
|
418 |
-
}
|
419 |
-
});
|
420 |
-
// Установка русского языка по умолчанию
|
421 |
-
editor.I18n.setLocale('ru');
|
422 |
-
// Удаление ненужных блоков
|
423 |
-
const unwantedBlocks = ['video', 'link', 'image'];
|
424 |
-
unwantedBlocks.forEach(blockId => {
|
425 |
-
editor.BlockManager.remove(blockId);
|
426 |
-
});
|
427 |
-
// Добавление блока адаптивной картинки
|
428 |
-
editor.BlockManager.add('responsive-image', {
|
429 |
-
label: editor.I18n.t('blockManager.labels.responsive-image'),
|
430 |
-
content: {
|
431 |
-
type: 'image',
|
432 |
-
style: {
|
433 |
-
display: 'block',
|
434 |
-
margin: 'auto',
|
435 |
-
maxWidth: '100%',
|
436 |
-
height: 'auto',
|
437 |
-
objectFit: 'cover'
|
438 |
-
},
|
439 |
-
attributes: {
|
440 |
-
alt: 'Responsive Image'
|
441 |
-
}
|
442 |
-
},
|
443 |
-
attributes: {
|
444 |
-
class: 'fa fa-image'
|
445 |
-
}
|
446 |
-
});
|
447 |
-
// Добавление блока центрированного текста
|
448 |
-
editor.BlockManager.add('centered-text', {
|
449 |
-
label: editor.I18n.t('blockManager.labels.centered-text'),
|
450 |
-
content: {
|
451 |
-
type: 'text',
|
452 |
-
style: {
|
453 |
-
textAlign: 'center'
|
454 |
-
},
|
455 |
-
content: 'Centered Text'
|
456 |
-
},
|
457 |
-
attributes: {
|
458 |
-
class: 'fa fa-align-center'
|
459 |
-
}
|
460 |
-
});
|
461 |
-
|
462 |
-
</script>
|
463 |
|
464 |
<script>
|
465 |
|
|
|
348 |
</script>
|
349 |
|
350 |
|
351 |
+
<script type="text/javascript" src="https://huggingface.co/spaces/DMTuit/psy_vk/resolve/main/js/rus/rus.js"></script>
|
352 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
|
354 |
<script>
|
355 |
|