{{#if resume.work}}
{{#>section title=(sectionTitle resume "work" "Work") class="work-title"}}
	{{#each resume.work}}
	<div class="mb-4">
		<div class="columns is-vcentered is-gapless m-0">
			<h5 class="column">
				<span>{{this.position}}</span> ─ <span class="is-italic">{{this.company}}</span>
			</h5>
			<h6 class="column is-narrow">
				{{this.startDate}} ─ {{this.endDate}}
			</h6>
		</div>
		{{#if this.summary}}
		<p>
			{{this.summary}}
			{{#if this.website}}
			<br />
			<a href="{{this.website}}" target="_blank">{{this.website}}</a>
			{{/if}}
		</p>
		{{/if}}
		{{#if this.highlights}}
		<ul>
			{{#each this.highlights}}
			<li>{{this}}</li>
			{{/each}}
		</ul>
		{{/if}}
	</div>
	{{/each}}
{{/section}}
{{/if}}