Summary
{{ mymarkup(summary) }}
Skills
{% for category, tags in skills.items() %}
{{ category.replace('_', ' ').replace('-', ' ').title() }}
{% endfor %}
Professional Experience
{% for job in experience %}
{% 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 %}