{% if site.resume_looking_for_work == 'yes' %}
Contact me
{% elsif site.resume_looking_for_work == 'no' %}
I'm not looking for work right now.
{% else %}
{% endif %}
{% if site.resume_section_experience %}
Experience
{% for job in site.data.experience %}
{{ job.company }}
{{ job.position }} • {{ job.duration }}
{{ job.summary }}
{% endfor %}
{% endif %}
{% if site.resume_section_education %}
Education
{% for education in site.data.education %}
{{ education.uni }}
{{ education.degree }} • {{ education.year }}
{{ education.awards }}
{{ education.summary }}
{% endfor %}
{% endif %}
{% if site.resume_section_projects %}