{% 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 %}
Projects
{% for project in site.data.projects %}
{{ project.project }}
{{ project.role }} • {{ project.duration }}
{{ project.description }}
{% endfor %}
{% endif %}
{% if site.resume_section_skills %}
Skills
{% for skill in site.data.skills %}
{{ skill.skill }}
{{ skill.description }}
{% endfor %}
{% endif %}
{% if site.resume_section_recognition %}