{# ─── HERO ─── #}

{{ story.hero_title }}

{{ story.hero_name }}

{% if story.theme %}

{{ story.theme }}

{% endif %}
{# ─── OPENING ─── #} {% if story.opening %}

{{ story.opening }}

{% endif %} {# ─── TIMELINE ─── #} {% if story.timeline %}

经历

{% for entry in story.timeline %}
{% if entry.period %} {% else %} {% endif %}

{{ entry.title }}

{% if entry.scene %}

{{ entry.scene }}

{% endif %} {% if entry.narrative %}

{{ entry.narrative }}

{% endif %} {% if entry.inner_voice %}

{{ entry.inner_voice }}

{% endif %} {% if entry.tech_weaved %}

{{ entry.tech_weaved }}

{% endif %} {% if entry.highlight_quote %}

"{{ entry.highlight_quote }}"

{% endif %} {% if not loop.last %}
{% endif %}
{% endfor %}
{% endif %} {# ─── SKILLS ─── #} {% if resume.skills %}

技能

{% if story.skills_as_story %}

{{ story.skills_as_story }}

{% endif %}
{% for skill in resume.skills %} {{ skill }} {% endfor %}
{% endif %} {# ─── EDUCATION ─── #} {% if resume.education %}

教育

{% if story.education_origin %}

{{ story.education_origin }}

{% endif %}
{% for edu in resume.education %}

{{ edu.institution }}

{{ edu.degree }}

{% if edu.highlights %}

{{ edu.highlights }}

{% endif %}
{% endfor %}
{% endif %} {# ─── PROJECTS ─── #} {% if resume.projects %}

项目

{% if story.projects_as_legend %}

{{ story.projects_as_legend }}

{% endif %}
{% for proj in resume.projects %}

{{ proj.name }}

{% if proj.url %} {% endif %}
{% if proj.description %}

{{ proj.description }}

{% endif %} {% if proj.tech_stack %}
{% for t in proj.tech_stack.split(',') %} {{ t.strip() }} {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {# ─── LANGUAGES & CERTIFICATIONS ─── #} {% if resume.languages or resume.certifications %}

{% if resume.languages %}

语言

    {% for lang in resume.languages %}
  • {{ lang }}
  • {% endfor %}
{% endif %} {% if resume.certifications %}

证书

    {% for cert in resume.certifications %}
  • {{ cert }}
  • {% endfor %}
{% endif %}
{% endif %} {# ─── CLOSING ─── #} {% if story.closing or story.signature_quote %}

{% if story.closing %}

{{ story.closing }}

{% endif %} {% if story.signature_quote %}

"{{ story.signature_quote }}"

{% endif %}
{% endif %}