다른 Claude가 커밋 시 의도치 않게 삭제한 핵심 템플릿 파일 복원: - cards/card-text-grid.html - emphasis/conclusion-accent-bar.html - emphasis/quote-left-border.html - emphasis/details-block.html - visuals/layer-diagram.html - visuals/pyramid-hierarchy.html - visuals/timeline-horizontal.html - visuals/timeline-vertical.html - _legacy/ 전체 (13개) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
881 B
HTML
31 lines
881 B
HTML
<!-- 강조 인용 블록: 문제 제기, 핵심 메시지 -->
|
|
<div class="block-quote">
|
|
<div class="quote-text">{{ quote_text }}</div>
|
|
{% if source %}<div class="quote-source">{{ source }}</div>{% endif %}
|
|
</div>
|
|
|
|
<style>
|
|
.block-quote {
|
|
background: var(--color-bg-subtle);
|
|
border-left: var(--accent-border) solid var(--color-danger);
|
|
padding: var(--spacing-inner) var(--spacing-block);
|
|
border-radius: 0 var(--radius) var(--radius) 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
.quote-text {
|
|
white-space: pre-line;
|
|
font-size: var(--font-body);
|
|
color: var(--color-text);
|
|
line-height: var(--line-height-ko);
|
|
font-weight: var(--weight-medium);
|
|
}
|
|
.quote-source {
|
|
font-size: var(--font-caption);
|
|
color: var(--color-text-light);
|
|
font-style: italic;
|
|
margin-top: var(--spacing-small);
|
|
}
|
|
</style>
|