Education
{% for edu in education %}
{{ edu.degree }}
{{ edu.field }}
{{ edu.school }}
{{ edu.year }}
{% if edu.detail %}
{{ edu.detail }}
{% endif %}
{% endfor %}
Publications
{% for pub in publications %}
{{ pub.title }}. {{ pub.authors }}. {{ pub.journal }}, {{ pub.year }}.
{% endfor %}
Teaching Experience
{% for job in teaching %}
{{ job.role }}
{{ job.dates }}
{{ job.institution }}
{% if job.description %}
{{ job.description }}
{% endif %}
{% endfor %}
Research Interests
{% for item in research_interests %}
{{ item }}
{% endfor %}
Conferences
{% for conf in conferences %}
{{ conf.title }}
{{ conf.venue }}, {{ conf.year }}
{% endfor %}
{% if awards %}
Awards & Grants
{% for item in awards %}
{{ item.name }}
{{ item.year }}
{% endfor %}
{% endif %}
{% if skills %}
Technical Skills
{% for item in skills %}
{{ item.category }}:
{{ item.list }}
{% endfor %}
{% endif %}
{% if memberships %}
Memberships
{% for item in memberships %}
{{ item }}
{% endfor %}
{% endif %}
{% if references %}
References
{% for ref in references %}
{{ ref.name }}
{{ ref.title }}, {{ ref.institution }}
{{ ref.email }}
{% endfor %}
{% endif %}