Initial commit: ASPEKTER — визуальный конструктор email-рассылок

- z51-pug-builder: Svelte 5 SPA, визуальный редактор Pug-писем
- email-gen: Node.js рендерер Pug→HTML через email-templates + Juice
- email-gen-api: HTTP сервер рендеринга (порт 8787)
- coin-scout: сервис подбора монет из фидов
- Docker Compose для dev/prod
- Nginx конфиг с SSL для app.aspekter.ru
This commit is contained in:
2026-04-13 11:36:39 +05:00
commit 718821fdd6
282 changed files with 64697 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
include ./_factory
+spacerLine(20)
//Кнопка Синяя 100% ширины
+ctaButtonSection({
width: 560,
buttonBg: '#ffffff',
buttonText: '#130F33',
iconSrc: 'https://574922.selcdn.ru/email.static/reaspekt/2024_newsletters/2024_09_29/icon-watch-white.png'
})
+spacerLine(20)
//Кнопка Синяя 50% ширины
+ctaButtonSection({
width: 270,
buttonBg: '#ffffff',
buttonText: '#130F33',
iconSrc: 'https://574922.selcdn.ru/email.static/reaspekt/2024_newsletters/2024_09_29/icon-watch-white.png'
})
+spacerLine(20)
//Кнопка Синяя 33% ширины
+ctaButtonSection({
width: 173,
buttonBg: '#ffffff',
buttonText: '#130F33',
iconSrc: 'https://574922.selcdn.ru/email.static/reaspekt/2024_newsletters/2024_09_29/icon-watch-white.png'
})
+spacerLine(20)
+spacerLine(20)
//Кнопка Зеленая 100% ширины
+ctaButtonSection({
width: 560,
buttonBg: '#130F33',
buttonText: '#AAC8C8',
iconSrc: 'https://574922.selcdn.ru/email.static/reaspekt/2024_newsletters/2024_09_29/icon-watch-blue.png'
})
+spacerLine(20)
//Кнопка Зеленая 50% ширины
+ctaButtonSection({
width: 270,
buttonBg: '#130F33',
buttonText: '#AAC8C8',
iconSrc: 'https://574922.selcdn.ru/email.static/reaspekt/2024_newsletters/2024_09_29/icon-watch-blue.png'
})
+spacerLine(20)
//Кнопка Зеленая 33% ширины
+ctaButtonSection({
width: 173,
buttonBg: '#130F33',
buttonText: '#AAC8C8',
iconSrc: 'https://574922.selcdn.ru/email.static/reaspekt/2024_newsletters/2024_09_29/icon-watch-blue.png'
})
+spacerLine(20)
//Сcылка синяя 100% ширины
+ctaLinkSection({ width: 560, colorClass: 'color__blue', linkClass: 'text__link-blue' })
+spacerLine(20)
//Сcылка синяя 50% ширины
+ctaLinkSection({ width: 270, colorClass: 'color__blue', linkClass: 'text__link-blue' })
+spacerLine(20)
//Сcылка синяя 33% ширины
+ctaLinkSection({ width: 173, colorClass: 'color__blue', linkClass: 'text__link-blue' })
+spacerLine(20)
tr
td.background__blue
+defaultTable('560')
+spacerLine(20)
//Сcылка белая 100% ширины
+ctaLinkSection({ width: 560, colorClass: 'color__white', linkClass: 'text__link-white' })
+spacerLine(20)
//Сcылка белая 50% ширины
+ctaLinkSection({ width: 270, colorClass: 'color__white', linkClass: 'text__link-white', tableWidth: '100%' })
+spacerLine(20)
//Сcылка белая 33% ширины
+ctaLinkSection({ width: 173, colorClass: 'color__white', linkClass: 'text__link-white', tableWidth: '100%' })
+spacerLine(20)