{% 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 %}

Summary

{{ summary | markdown }}
{% for category, tags in skills.items() %}
{{ category.replace('_', ' ').replace('-', ' ') | title }}
{% for tag in tags %}
{{ tag }}
{% endfor %}
{% endfor %}

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 %}

Education

{% for edu in education %}

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

{% if edu.start %}

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

{% endif %}
{% endfor %}