{{ name }}

{{ profession }} • {{ location }} • {{ email }}LinkedInGitHub

Summary

{{ mymarkup(summary) }}

Skills

{% 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 }}
{{ job.company }}

{% if job.location %}{{ job.location }}{% endif %} {% if job.location and job.start %}
{% endif %} {% if job.start %}{{ job.start }} - {{ job.end or 'Present' }}{% endif %}

    {% for highlight in job.highlights %}
  • {{ highlight }}
  • {% endfor %}
{% endfor %}

Education

{% for edu in education %}

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

{% if edu.location %}{{ edu.location }}{% endif %} {% if edu.location and edu.start %}
{% endif %} {% if edu.start %}{{ edu.start }} - {{ edu.end or 'Present' }}{% endif %}

{% endfor %}