{# CV Experience Section - work experience timeline Data fetched from /cv/data.json via homepage plugin #} {% set sectionConfig = section.config or {} %} {% set maxItems = sectionConfig.maxItems or 10 %} {% set showHighlights = sectionConfig.showHighlights if sectionConfig.showHighlights is defined else true %} {% if cv and cv.experience and cv.experience.length %}

{{ sectionConfig.title or "Experience" }}

{% for item in cv.experience | head(maxItems) %} {% if not filterType or item.experienceType == filterType or not item.experienceType %}

{{ item.title }}

{{ item.company }}{% if item.location %} · {{ item.location }}{% endif %} {% if item.type %} · {{ item.type }}{% endif %}

{% if item.startDate %}

{{ item.startDate }}{% if item.endDate %} – {{ item.endDate }}{% else %} – Present{% endif %}

{% endif %} {% if item.description %}

{{ item.description }}

{% endif %} {% if showHighlights and item.highlights and item.highlights.length %}
{% for h in item.highlights %} {{ h }} {% endfor %}
{% endif %}
{% endif %} {% endfor %}
{% endif %}