{# ================= BOOT SEQUENCE ================= #}
BIOS v3.14.159 ... OK MEM CHECK: 640K ought to be enough for anybody ... OK LOADING RESUME_OS v2.0 ...
{{ story.hero_name }}
{{ story.hero_title }}
SESSION ESTABLISHED // {{ story.theme | default('retro-terminal', true) }}
{# ================= OPENING ================= #} {% if story.opening %}
cat opening.txt
{{ story.opening }}
{% endif %} {# ================= SUMMARY (whoami) ================= #} {% if resume.summary %}
whoami
{{ resume.summary }}
{% endif %} {# ================= EXPERIENCE (timeline log entries) ================= #} {% if story.timeline %}
cat timeline.log | sort --reverse
{% for entry in story.timeline %}
[{{ entry.period }}] {{ entry.title }} {% if entry.type == 'turning_point' %} * TURNING POINT {% elif entry.type == 'flashback' %} FLASHBACK {% elif entry.type == 'flash_forward' %} FLASH FORWARD {% endif %}
{% if entry.year %}
// year: {{ entry.year }}
{% endif %} {% if entry.scene %}
{{ entry.scene }}
{% endif %} {% if entry.narrative %}
{{ entry.narrative }}
{% endif %} {% if entry.inner_voice %}
// inner_voice:
{{ entry.inner_voice }}
{% endif %} {% if entry.tech_weaved %}
tech_weaved> {{ entry.tech_weaved }}
{% endif %} {% if entry.highlight_quote %}
"{{ entry.highlight_quote }}"
{% endif %}
{% if not loop.last %}
--- log entry separator ---
{% endif %} {% endfor %}
{% elif resume.experience %}
cat experience.log
{% for exp in resume.experience %}
[{{ exp.period }}] {{ exp.role }} @ {{ exp.company }}
{% if exp.highlights %}
{{ exp.highlights }}
{% endif %} {% if exp.tech_stack %}
stack> {% for t in exp.tech_stack.split(',') %} {{ t | trim }} {% endfor %}
{% endif %}
{% if not loop.last %}
---
{% endif %} {% endfor %}
{% endif %} {# ================= SKILLS (ls -la) ================= #} {% if resume.skills %}
ls -la skills/
{% if story.skills_as_story %}
{{ story.skills_as_story }}
{% endif %}
total {{ resume.skills | length }}
{% for skill in resume.skills %}
-rw-r--r-- {{ (skill | length) }}B {% if loop.index0 is divisibleby 3 %}{{ skill }}{% else %}{{ skill }}{% endif %}
{% endfor %}
{% endif %} {# ================= EDUCATION (uname -a) ================= #} {% if resume.education %}
uname -a
{% if story.education_origin %}
{{ story.education_origin }}
{% endif %}
{% for edu in resume.education %}
SYSTEM: {{ edu.institution }}
KERNEL: {{ edu.degree }}
UPTIME: {{ edu.period }}
{% if edu.highlights %}
NOTES: {{ edu.highlights }}
{% endif %}
{% if not loop.last %}
---
{% endif %} {% endfor %}
{% endif %} {# ================= PROJECTS (ps aux) ================= #} {% if resume.projects %}
ps aux | grep projects
{% if story.projects_as_legend %}
{{ story.projects_as_legend }}
{% endif %}
{% for proj in resume.projects %} {% endfor %}
USER PID COMMAND ROLE STACK
{{ story.hero_name | lower | replace(' ', '_') | truncate(12, True, '..') }} {{ 1000 + loop.index0 }} {{ proj.name }} {% if proj.url %}
{{ proj.url }} {% endif %}
{{ proj.role }} {% if proj.description %}
{{ proj.description | truncate(80) }} {% endif %}
{% if proj.tech_stack %} {% for t in proj.tech_stack.split(',') %}{{ t | trim }}{% endfor %} {% endif %}
{% endif %} {# ================= LANGUAGES & CERTS ================= #} {% if resume.languages or resume.certifications %}
{% if resume.languages %}
locale --list
{% for lang in resume.languages %}
LOCALE[{{ loop.index0 }}]={{ lang }}
{% endfor %}
{% endif %} {% if resume.certifications %}
cat /etc/certificates.conf
{% for cert in resume.certifications %}
[SIGNED] {{ cert }}
{% endfor %}
{% endif %}
{% endif %} {# ================= CLOSING ================= #} {% if story.closing %}
cat farewell.txt
{{ story.closing }}
{% endif %} {# ================= SIGNATURE QUOTE ================= #} {% if story.signature_quote %}
"{{ story.signature_quote }}"
{% endif %} {# ================= TERMINAL FOOTER ================= #}
{# ================= JSON-LD structured data (hidden) ================= #}