{% set work = page.resume.work %} {% if work %}

{% trans %}resume work title{% endtrans %} ({{ work | length }})

{% for work_item in work %}
{% if work_item.name %} {% if work_item.summary %} {% if loop.first %} {% else %} {% endif %} {% endif %}
{% if work_item.position %}
{{ work_item.position }}
{% endif %}
{{ work_item.name }}
{% if work_item.startDate %} {{ utils.format_date_short(work_item.startDate) }} {% endif %} {{ locale }} {% if not utils.isinfinite(work_item.endDate) %} - {{ utils.format_date_short(work_item.endDate) }} {% else %} - {{ language.phrases.present }} {% endif %}
{% endif %} {% if work_item.location %} {{ work_item.location }}, {% endif %} {% if work_item.url %} {{ work_item.url }} {% endif %} {% if work_item.keywords %}
    {% for keyword in keywords %}
  • {{ keyword }}
  • {% endfor %}
{% endif %}
{% if work_item.summary %}
{{ work_item.summary | replace("\r\n", "
") | replace("\n", "
") | replace("\r", "
") }}
{% endif %} {% if work_item.highlights %}
    {% for highlight in work_item.highlights %}
  • {{ highlight | replace("\r\n", "
    ") | replace("\n", "
    ") | replace("\r", "
    ") }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %}