{% if not separator %} {% set separator = '•' %} {% endif %} {% set separator = separator | safe %} {% if not styles %} {% set styles = 'styles.css' %} {% endif %} {{ name }}

{{ name }}

{% set contact_details = [] %} {% if profession %} {% set contact_details = contact_details + [profession] %} {% endif %} {% if location %} {% set contact_details = contact_details + [location] %} {% endif %} {% if email %} {% set email = email | escape | safe %} {% set email = ('' | safe) ~ email ~ ('' | safe) %} {% set contact_details = contact_details + [email] %} {% endif %} {% if phone %} {% set phone = phone | escape | safe %} {% set phone = ('' | safe) ~ phone ~ ('' | safe) %} {% set contact_details = contact_details + [phone] %} {% endif %} {% if linkedin %} {% set linkedin = linkedin | escape | safe %} {% if "https://" in linkedin %} {% set linkedin = ('LinkedIn' | safe) %} {% else %} {% set linkedin = ('LinkedIn' | safe) %} {% endif %} {% set contact_details = contact_details + [linkedin] %} {% endif %} {% if github %} {% set github = github | escape | safe %} {% if "https://" in github %} {% set github = ('GitHub' | safe) %} {% else %} {% set github = ('GitHub' | safe) %} {% endif %} {% set contact_details = contact_details + [github] %} {% endif %} {% if contact_details %}

{{ contact_details | join((' ' | safe) ~ separator ~ (' ' | safe)) }}

{% endif %}
{% for section_name, section_value in _context.items() %} {% set other_fields = ['template', 'font_size', 'font-size', 'name', 'profession', 'location', 'email', 'phone', 'linkedin', 'github'] %} {% if section_name in other_fields %} {% elif section_name == 'experience' %}

Professional Experience

{% for job in experience %}

{{ job.title }} {{ separator }} {{ job.company }}

{% if job.location %}{{ job.location }}{% endif %} {% if job.location and job.start %}{{ separator }}{% endif %} {% if job.start %}{{ job.start }} - {{ job.end | default('Present') }}{% endif %}

{{ job.summary | markdown }}
{% endfor %}
{% elif section_name == 'education' %}

Education

{% for edu in education %}

{{ edu.qualification }} {{ separator }} {{ edu.institution }}

{% if edu.start %}

{{ edu.start }} - {{ edu.end | default('Present') }}

{% endif %}
{% endfor %}
{% else %}

{{ section_name.replace('_', ' ').replace('-', ' ') | title }}

{% if section_value is string %} {{ section_value | markdown }} {% elif section_value is mapping %} {% for subheading, value in section_value.items() %}

{{ subheading.replace('_', ' ').replace('-', ' ') | title }}

{% if value is string %} {{ value | markdown }} {% elif value is sequence %} {% endif %} {% endfor %} {% elif section_value is sequence %} {% endif %}
{% endif %} {% endfor %}