{{ personal_info.name }}

{% if personal_info.title %}
{{ personal_info.title }}
{% endif %}
{% if personal_info.email %}

📧 {{ personal_info.email }}

{% endif %} {% if personal_info.phone %}

📱 {{ personal_info.phone }}

{% endif %} {% if personal_info.address %}

📍 {{ personal_info.address }}

{% endif %}
{% if personal_info.bio %}

Professional Summary

{{ personal_info.bio }}

{% endif %}

Technical Skills

{% for category, category_skills in skills.items %}

{{ category }}

{% for skill in category_skills %} {{ skill.name }} {% endfor %}
{% endfor %}
{% if work_experience %}

Work Experience

{% for exp in work_experience %}

{{ exp.position }}

{{ exp.company }}
{{ exp.start_date|date:"M Y" }} - {% if exp.end_date %}{{ exp.end_date|date:"M Y" }}{% else %}Present{% endif %} {% if exp.location %}
{{ exp.location }}{% endif %}
{% if exp.description %}

{{ exp.description }}

{% endif %} {% if exp.highlights %} {% endif %} {% if exp.technologies %}
{% for tech in exp.get_technologies_list %} {{ tech }} {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if education %}

Education

{% for edu in education %}

{{ edu.institution }}

{{ edu.degree }} in {{ edu.field_of_study }}
{% if edu.gpa %}
GPA: {{ edu.gpa }}
{% endif %}
{{ edu.start_date|date:"M Y" }} - {% if edu.end_date %}{{ edu.end_date|date:"M Y" }}{% else %}Present{% endif %} {% if edu.location %}
{{ edu.location }}{% endif %}
{% if edu.description %}

{{ edu.description }}

{% endif %}
{% endfor %}
{% endif %} {% if certifications %}

Certifications

{% for cert in certifications %}

{{ cert.name }}

{{ cert.issuer }} • {{ cert.date_earned|date:"F Y" }} {% if cert.credential_id %}
Credential ID: {{ cert.credential_id }}{% endif %}
{% endfor %}
{% endif %} {% if projects %}

Key Projects

{% for project in projects %}

{{ project.title }}

{{ project.description }}

{% for tech in project.technology.split %} {{ tech }} {% endfor %}
{% endfor %}
{% endif %}