{% if cv.work %}

{{ site.data.theme.t.cv_work | default: 'Work' }}

{% for w in cv.work %} {% if w.company %}

{% if w.website %} {{ w.company }} {% else %} {{ w.company }} {% endif %}

{% endif %} {% if w.position %}

{{ w.position }}

{% endif %}
{% if w.startDate %} {{ w.startDate }} {% endif %} {% if w.endDate == '' %} {{ site.data.theme.t.present | default: 'Present' | prepend: ' — ' }} {% else %} {{ w.endDate | prepend: ' — ' }} {% endif %}
{% if w.summary %}

{{ w.summary }}

{% endif %} {% if w.highlights %} {% endif %} {% endfor %}
{% endif %}