38 lines
1002 B
Handlebars
38 lines
1002 B
Handlebars
|
{{#if resume.work.length}}
|
|||
|
<section id="work">
|
|||
|
<h3>Work</h3>
|
|||
|
<div>
|
|||
|
{{#each resume.work}}
|
|||
|
<div>
|
|||
|
<div class="spaced-list">
|
|||
|
<h4>{{name}}</h4>
|
|||
|
<span>
|
|||
|
<time datetime="{{startDate}}">{{formatDate startDate}}</time> –
|
|||
|
{{#if endDate}}<time datetime="{{endDate}}">{{formatDate endDate}}</time>{{else}}Present{{/if}}
|
|||
|
</span>
|
|||
|
</div>
|
|||
|
<div class="spaced-list">
|
|||
|
{{#position}}
|
|||
|
<strong>{{.}}</strong>
|
|||
|
{{/position}}
|
|||
|
{{#url}}
|
|||
|
<a href="{{.}}">{{.}}</a>
|
|||
|
{{/url}}
|
|||
|
</div>
|
|||
|
{{#summary}}
|
|||
|
<p>{{.}}</p>
|
|||
|
{{/summary}}
|
|||
|
{{#if highlights.length}}
|
|||
|
<h5>Highlights</h5>
|
|||
|
<ul>
|
|||
|
{{#highlights}}
|
|||
|
<li>{{.}}</li>
|
|||
|
{{/highlights}}
|
|||
|
</ul>
|
|||
|
{{/if}}
|
|||
|
</div>
|
|||
|
{{/each}}
|
|||
|
</div>
|
|||
|
</section>
|
|||
|
{{/if}}
|