Experience

{% for position in work %}

{{ position.company }} {{ position.startDate|date('M, Y') }} - {% if position.endDate is not defined %} Current {% else %} {{ position.endDate|date('M, Y') }} {% endif %} (~ {% if position.endDate is not defined %} {{ position.startDate|date_diff }} {% else %} {{ position.startDate|date_diff(position.endDate) }} {% endif %} )

{{ position.position }}

{{ position.summary|raw }}

{% if position.highlights is defined and position.highlights is not empty %}
Highlights
{% for highlight in position.highlights %}
{{ highlight|raw }} {# raw is deprecated in 2.0 #}
{% endfor %}
{% endif %}
{% endfor %}