{{#if resume.work.length}}
<section id="work">
    <h2>Work Experience</h2>
    {{#each resume.work}}
        {{#> item title=(getValueIfDiffFromPrevious @root.resume.work @index "name") subtitle=position location=(getValueIfDiffFromPrevious @root.resume.work @index "name" "location") startDate=startDate endDate=endDate startDate2=startDate2 endDate2=endDate2}}

        {{#if highlights.length}}
        <ul class="highlights">
            {{#each highlights}}
            <li>{{{.}}}</li>
            {{/each}}
        </ul>
        {{/if}}
        {{/item}}
    {{/each}}
</section>
{{/if}}
