Full project: Svelte 5 frontend, Vite 7 backend API, Pug email templates (email-gen), Docker deployment. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
929 B
Plaintext
30 lines
929 B
Plaintext
include ./_factory
|
||
|
||
// Extended
|
||
|
||
// 1
|
||
|
||
// Текст с изображением справа Синий Фон
|
||
+sideImageTextSection({
|
||
bgClass: 'background__blue',
|
||
textClass: 'color__white',
|
||
imageSrc: 'https://574922.selcdn.ru/email.static/reaspekt/master-tamplate/banners/icons-box-blue.png',
|
||
imageBg: '#130F33'
|
||
})
|
||
|
||
// Текст с изображением справа Белый Фон
|
||
+sideImageTextSection({
|
||
bgClass: 'background__white',
|
||
textClass: 'color__blue',
|
||
imageSrc: 'https://574922.selcdn.ru/email.static/reaspekt/master-tamplate/banners/icons-box-white.png',
|
||
imageBg: '#ffffff'
|
||
})
|
||
|
||
// Текст с изображением справа Зеленый Фон
|
||
+sideImageTextSection({
|
||
bgClass: 'background__green',
|
||
textClass: 'color__blue',
|
||
imageSrc: 'https://574922.selcdn.ru/email.static/reaspekt/master-tamplate/banners/icons-box-green.png',
|
||
imageBg: '#AAC8C8'
|
||
})
|