--- layout: default ---
{% if site.introduction %}

Objective

{{ site.introduction }}
{% endif %}

Professional Strengths

    {% for skill in site.data.professional-strengths.skills %}
  • {{ skill.name }}
  • {% endfor %}

Work Experience

{% for job in site.data.work-experience.jobs %}

{{ job.title }} - {{ job.place }} ({{ job.years }})
{{ job.description}}

    {% for work-item in job.work-items %}
  • {{ work-item }}
  • {% endfor %}
{% endfor %}

Education

{% for school in site.data.education.schools %}

{{ school.name }}, {{ school.location }} - ({{ school.years }})

    {% for degree in school.degrees %}
  • {{ degree }}
  • {% endfor %}
{% endfor %}

References

{% for reference in site.data.references.myreferences %}

{{ reference.name }}, {{ reference.title }}
{{ reference.company }}, {{ reference.location }}, {{ reference.phone }}

{% endfor %}
{% include footer.html %}