{{ story.hero_name }}

{{ story.hero_title }}

{% if story.opening %}

{{ story.opening }}

{% endif %} {% if resume.summary %}

{{ resume.summary }}

{% endif %}
{% set years_count = [] %} {% for exp in resume.experience %} {% if exp.period %} {% set parts = exp.period.split('-') %} {% if parts|length >= 2 %} {% set start_yr = parts[0].strip()|int %} {% set end_str = parts[1].strip() %} {% if end_str.lower() == 'present' or end_str.lower() == 'now' or end_str == '' %} {% set _ = years_count.append(2025 - start_yr) %} {% else %} {% set _ = years_count.append(end_str|int - start_yr) %} {% endif %} {% endif %} {% endif %} {% endfor %} {% set total_years = years_count|sum if years_count else 0 %}

{{ total_years if total_years > 0 else '+' }}

Years

{{ resume.experience|length }}

Roles

{{ resume.skills|length }}

Skills

{{ resume.projects|length }}

Projects

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

— {{ resume.name }}

{% endif %} {% if resume.skills %}

Skills & Technologies

{% if story.skills_as_story %}

{{ story.skills_as_story }}

{% endif %}
{% for skill in resume.skills %} {{ skill }} {% endfor %}
{% endif %} {% if story.timeline %}
{% endif %} {% for entry in story.timeline %}
{% if entry.type == 'chapter' %} {% elif entry.type == 'turning_point' %} {% elif entry.type == 'flashback' %} {% elif entry.type == 'flash_forward' %} {% endif %} {{ entry.type.replace('_', ' ') }}
{{ entry.year }}

{{ entry.title }}

{% if entry.period %}

{{ entry.period }}

{% endif %} {% 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 %}
{% endfor %} {% if resume.experience %}
{% endif %} {% for exp in resume.experience %}

{{ exp.role }}

{{ exp.company }}

{{ exp.period }}
{% if exp.highlights %}
{% for line in exp.highlights.split('\n') %} {% if line.strip() %}

{% if line.strip().startswith('-') or line.strip().startswith('*') %} {{ line.strip().lstrip('-* ') }} {% else %} {{ line.strip() }} {% endif %}

{% endif %} {% endfor %}
{% endif %} {% if exp.tech_stack %}
{% for t in exp.tech_stack.split(',') %} {% if t.strip() %} {{ t.strip() }} {% endif %} {% endfor %}
{% endif %}
{% endfor %} {% if resume.projects %}
{% endif %} {% for proj in resume.projects %}

{{ proj.name }}

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

{{ proj.role }}

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

{{ proj.description }}

{% endif %} {% if proj.tech_stack %}
{% for t in proj.tech_stack.split(',') %} {% if t.strip() %} {{ t.strip() }} {% endif %} {% endfor %}
{% endif %}
{% endfor %} {% if resume.education %}

Academic Background

{% if story.education_origin %}

{{ story.education_origin }}

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

{{ edu.degree }}

{{ edu.institution }}

{{ edu.period }}

{% if edu.highlights %}

{{ edu.highlights }}

{% endif %}
{% endfor %}
{% endif %} {% if resume.languages %}

Spoken

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

Credentials

{% for cert in resume.certifications %}
{{ cert }}
{% endfor %}
{% endif %} {% if story.closing %}

{{ story.closing }}

{% endif %}