{{ resume.contact.name }}
{% set contact_parts = [] %} {% if resume.contact.email %} {% set _ = contact_parts.append('' ~ resume.contact.email ~ '') %} {% endif %} {% if resume.contact.phone %} {% set _ = contact_parts.append(resume.contact.phone) %} {% endif %} {% if resume.contact.location %} {% set _ = contact_parts.append(resume.contact.location) %} {% endif %} {% if resume.contact.linkedin %} {% set url = resume.contact.linkedin if resume.contact.linkedin.startswith('http') else 'https://' ~ resume.contact.linkedin %} {% set _ = contact_parts.append('LinkedIn') %} {% endif %} {% if resume.contact.github %} {% set url = resume.contact.github if resume.contact.github.startswith('http') else 'https://' ~ resume.contact.github %} {% set _ = contact_parts.append('GitHub') %} {% endif %} {% if resume.contact.website %} {% set url = resume.contact.website if resume.contact.website.startswith('http') else 'https://' ~ resume.contact.website %} {% set _ = contact_parts.append('Website') %} {% endif %} {{ contact_parts | join('|') | safe }}
{% if resume.summary %}
Summary
{{ resume.summary }}
{% endif %} {% if resume.experience %}
Experience
{% for exp in resume.experience %}
{{ exp.company }}{% if exp.location %}, {{ exp.location }}{% endif %}
{{ exp.title }}
{% if exp.bullets %}
    {% for bullet in exp.bullets %}
  • {{ bullet }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if resume.education %}
Education
{% for edu in resume.education %}
{{ edu.institution }}{% if edu.location %}, {{ edu.location }}{% endif %}
{{ edu.degree }}
{% if edu.details %}
    {% for detail in edu.details %}
  • {{ detail }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if resume.skills %}
Skills
{{ resume.skills | join(', ') }}
{% endif %} {% if resume.projects %}
Projects
{% for proj in resume.projects %}
{% if proj.url %} {% set url = proj.url if proj.url.startswith('http') else 'https://' ~ proj.url %} {{ proj.name }} {% else %} {{ proj.name }} {% endif %} {% if proj.description %} - {{ proj.description }}{% endif %} {% if proj.bullets %}
    {% for bullet in proj.bullets %}
  • {{ bullet }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if resume.certifications %}
Certifications
{% endif %} {% if resume.publications %}
Publications
{% endif %}