5단계 AI 파이프라인: 1. Kei 실장(Opus via Kei API) — 꼭지 추출 + 정보 구조 파악 2. 디자인 팀장 — FAISS 블록 검색 + Opus 추천 + Sonnet 블록 매핑 3. Kei 편집자(Kei API) — 도메인 전문 텍스트 정리 4. 디자인 실무자(Sonnet + Jinja2) — CSS 변수 조정 + HTML 조립 5. 디자인 팀장(Sonnet) — 균형 재검토 (최대 2회 루프) 블록 라이브러리 46개 (6 카테고리) + _legacy 13개 FAISS 블록 검색 (bge-m3, 1024차원) SVG N개 동적 배치 (cos/sin 좌표 계산) Pillow 이미지 크기 측정 + base64 인라인 컨테이너 예산 기반 블록 배치 (zone별 높이 px) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
46 lines
1.1 KiB
HTML
46 lines
1.1 KiB
HTML
<!-- 경고 콜아웃: 주의/경고/문제점 강조 -->
|
|
<!--
|
|
📋 callout-warning
|
|
─────────────────
|
|
용도: 문제점 지적, 주의사항, 잘못된 접근 경고
|
|
슬롯: title (필수), description (필수), icon (선택)
|
|
callout-solution과 다른 점: 경고 톤 (빨간/주황), 문제 지적용
|
|
-->
|
|
<div class="block-callout-warn">
|
|
{% if icon %}<div class="cw-icon">{{ icon }}</div>{% endif %}
|
|
<div class="cw-body">
|
|
<div class="cw-title">{{ title }}</div>
|
|
<div class="cw-desc">{{ description }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.block-callout-warn {
|
|
background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
|
|
border: 2px solid #fca5a5;
|
|
border-radius: var(--radius);
|
|
padding: 20px 24px;
|
|
display: flex;
|
|
gap: 16px;
|
|
align-items: flex-start;
|
|
}
|
|
.cw-icon {
|
|
font-size: 2rem;
|
|
flex-shrink: 0;
|
|
}
|
|
.cw-body { flex: 1; }
|
|
.cw-title {
|
|
font-size: 17px;
|
|
font-weight: 800;
|
|
color: #991b1b;
|
|
margin-bottom: 6px;
|
|
}
|
|
.cw-desc {
|
|
font-size: 14px;
|
|
color: #7f1d1d;
|
|
line-height: 1.7;
|
|
white-space: pre-line;
|
|
word-break: keep-all;
|
|
}
|
|
</style>
|