json-theme-even-fork/partials/work.hbs
Rafael Bardini 9da28d862a Use CSS grid
- Remove Bootstrap and Octicons
- Simplify styles and markup
- Add color and type scale custom properties
- Extract section templates to partials
- Validate rendered HTML
- Update test snapshots
2020-07-18 22:44:17 +02:00

38 lines
1002 B
Handlebars
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{#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}}