{{ name }}
{{ email }}
{{ phone }}
{% if linkedin %}
{{ linkedin }}
{% endif %} {% if github %}
{{ github }}
{% endif %}
{% if profile %}
Profile
{{ profile }}
{% endif %}
Education
{% for edu in education %}
{{ edu.degree }}, {{ edu.field }}
{{ edu.institution }}
{% if edu.cgpa %}{{ edu.cgpa }}{% endif %} {% if edu.percentage %}{{ edu.percentage }}{% endif %} {% if edu.duration %} | {{ edu.duration }}{% endif %} {% if edu.location %} | {{ edu.location }}{% endif %}
{% endfor %}
Professional Experience
{% for exp in experience %}
{{ exp.role }}
{{ exp.company }}
{{ exp.duration }}{% if exp.location %} | {{ exp.location }}{% endif %}
{{ exp.description }}
{% if exp.achievements %}
{% for ach in exp.achievements %}
{{ ach }}
{% endfor %}
{% endif %}
{% endfor %}
Skills
{% for skill_category in skills %}
{{ skill_category.category }} -
{{ skill_category.skills }}
{% endfor %}
Projects
{% for project in projects %}
{{ project.name }}
{{ project.technologies }}
{% if project.description %}
{{ project.description }}
{% endif %} {% if project.highlights %}
{% for highlight in project.highlights %}
{{ highlight }}
{% endfor %}
{% endif %}
{% endfor %}
{% if certificates %}
Certificates
{% for cert in certificates %}
{{ cert.name }}
{{ cert.issuer }}
{{ cert.date }}
{% endfor %}
{% endif %}