Opening the story...
{% if story.theme %}
{{ story.theme }}
{% endif %}

{{ story.hero_name }}

{{ story.hero_title }}

Scroll to begin
{% if story.opening %}

{{ story.opening }}

{% endif %}

The Journey

A timeline of chapters and turning points

{% for entry in story.timeline %} {% set is_left = loop.index0 % 2 == 0 %} {% set card_class = '' %} {% set node_class = '' %} {% set marker_class = '' %} {% if entry.type == 'turning_point' %} {% set card_class = 'turning-point-card' %} {% set node_class = 'turning-point' %} {% set marker_class = 'turning-point' %} {% elif entry.type == 'flashback' %} {% set card_class = 'flashback-card' %} {% set node_class = 'flashback' %} {% set marker_class = 'flashback' %} {% elif entry.type == 'flash_forward' %} {% set card_class = 'flash-forward-card' %} {% set node_class = 'flash-forward' %} {% set marker_class = 'flash-forward' %} {% endif %}
{% if entry.type == 'turning_point' %} ★ Turning Point {% elif entry.type == 'flashback' %} ↺ Flashback {% elif entry.type == 'flash_forward' %} ⇀ Flash Forward {% else %} Chapter {{ loop.index }} {% endif %} {{ 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 story.skills_as_story %}

The Arsenal

Skills forged through experience

{{ story.skills_as_story }}

{% if resume.skills %}
{% for skill in resume.skills %} {{ skill }} {% if not loop.last %}·{% endif %} {% endfor %}
{% endif %}
{% endif %}
{% if story.education_origin %}

The Origin

Where the journey began

{{ story.education_origin }}

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

{{ edu.institution }}

{{ edu.degree }}{% if edu.highlights %} · {{ edu.highlights }}{% endif %}

{% if edu.period %}

{{ edu.period }}

{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% if story.projects_as_legend %}

The Legends

Projects that left their mark

{{ story.projects_as_legend }}

{% if resume.projects %}
{% for project in resume.projects %}

{{ project.name }}

{% if project.description %}

{{ project.description }}

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

Epilogue

The story continues...

{% if story.closing %}

{{ story.closing }}

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

— {{ story.hero_name }}

{% endif %}