{% if personal_info %}
{{ personal_info.full_name }}
{{ personal_info.email }} | {{ personal_info.phone }}
{{ personal_info.address }}
{% if personal_info.linkedin %}
LinkedIn
{% endif %} {% if personal_info.github %}
GitHub
{% endif %} {% if personal_info.portfolio %}
Portfolio
{% endif %}
{% if personal_info.dob or personal_info.nationality %}
{% if personal_info.dob %}DOB: {{ personal_info.dob }}{% endif %} {% if personal_info.nationality %} | Nationality: {{ personal_info.nationality }}{% endif %}
{% endif %}
{% endif %} {% if resume.summary %}
Summary
{{ resume.summary }}
{% endif %} {% if education %}
Education
{% for edu in education %}
{{ edu.degree }}
, {{ edu.institution }}
{{ edu.start_year }} - {{ edu.end_year|default:"Present" }}{% if edu.location %} | {{ edu.location }}{% endif %}
{% if edu.grade %}Grade: {{ edu.grade }}{% endif %}
{% endfor %}
{% endif %} {% if experience %}
Work Experience
{% for exp in experience %}
{{ exp.job_title }}
at {{ exp.company }}
{{ exp.start_date }} - {{ exp.end_date|default:"Present" }}{% if exp.location %} | {{ exp.location }}{% endif %}
{{ exp.responsibilities }}
{% endfor %}
{% endif %} {% if projects %}
Projects
{% for project in projects %}
{{ project.title }}
{% if project.organization %} - {{ project.organization }}{% endif %}
{% if project.duration %}Duration: {{ project.duration }}
{% endif %} {{ project.description }}
{% if project.technologies %}
Technologies:
{{ project.technologies }}{% endif %}
{% endfor %}
{% endif %} {% if skills %}
Skills
{% for skill in skills %}
{{ skill.name }} ({{ skill.category }})
{% endfor %}
{% endif %} {% if certifications %}
Certifications
{% for cert in certifications %}
{{ cert.name }} - {{ cert.issued_by }} ({{ cert.year }})
{% endfor %}
{% endif %} {% if achievements %}
Achievements
{% for ach in achievements %}
{{ ach.title }}
{% if ach.description %} - {{ ach.description }}{% endif %}
{% endfor %}
{% endif %} {% if extracurricular %}
Extracurricular Activities
{% for extra in extracurricular %}
{{ extra.activity }}
{% if extra.description %} - {{ extra.description }}{% endif %}
{% endfor %}
{% endif %} {% if references %}
References
{% for ref in references %}
{{ ref.name }} - {{ ref.designation }} at {{ ref.company }}{% if ref.contact %} | Contact: {{ ref.contact }}{% endif %}
{% endfor %}
{% endif %}