{# ─── Optional 배경 텍스처 ─── #} {% if bg_texture %}
{% endif %} {# ─── Optional 데코 그라데이션 ─── #} {% if decoration %}
{% endif %} {# ─── Optional 연결 아크 3개 ─── #} {% if arcs %}
{% endif %} {# ─── 메인 3원 outer ─── #} {% for pos, c in [('top', circles.top), ('bot-left', circles.bot_left), ('bot-right', circles.bot_right)] %}

{{ c.label[0] }}

{{ c.label[1] }}

{% endfor %} {# ─── 액센트 6원 (3 main circles × 2 corners each) ─── #} {% for pos, a in [ ('top-left', accents.top_left), ('top-right', accents.top_right), ('left-top', accents.left_top), ('left-bot', accents.left_bot), ('right-top', accents.right_top), ('right-bot', accents.right_bot)] %} {% if a %}
{{ a.char }}
{% endif %} {% endfor %} {# ─── 사이드 라벨 6 위치 × (title + desc) = 최대 12개 ─── #} {% for pos, lbl in [ ('top-left', side_labels.top_left), ('top-right', side_labels.top_right), ('mid-left', side_labels.mid_left), ('mid-right', side_labels.mid_right), ('bot-left', side_labels.bot_left), ('bot-right', side_labels.bot_right)] %} {% if lbl %} {% if lbl.title %}
{{ lbl.title }}
{% endif %} {% if lbl.desc %}
{% for line in lbl.desc %}

{{ line }}

{% endfor %}
{% endif %} {% endif %} {% endfor %}